1 Introduction

1.1 Overview

In this project, We will analyze a dataset composed by job postings in order to discover useful information regarding a specific job title through various text analytics techniques. The job title and the location associated with it, used to gather the job posting descriptions, were Data Scientist and Los Angeles respectively. All job postings were filtered by date: January 2019. Techniques used were tokenization, stemming, lemmatization, n-gram, and so on.

1.2 Purpose

The main purpose of this project is to gain insights that can help job applicants to be familiar with what the organizations are looking for in terms of data scientist positions located in Los Angeles area.

1.3 High level approach

2 Data Collection

2.1 Library import

Loading libraries for data cleaning, processing & visualization…

# There are a range of packages in R for doing text analysis. These include:
# 
# hunspell - Tools for spelling, stemming, and tokenization.
# SnowballC - Tools for stemming in a range of languages.
# stringr - Tools for cleaning individual strings (e.g. trimming whitespace).
# text2vec - Tools for tools for text vectorization, topic modeling, and more.
# tidytext - Tools for word processing, sentiment analysis, and tidying text.
# tm - A framework for text mining.



library(tm)
library(tmap)
library(SnowballC)
library(ggplot2)
library(DT)
library(plyr)
library(tibble)
library(RColorBrewer)
library(wordcloud)
library(stringr)

2.2 Data Loading

Loading Job posting dataset…

# 1.1 Setting my working directory in R
setwd("C:/Saul/Portfolio/Text Analytics") 
# 1.2 Reading the dataset

data.text  <- read.csv("DataScientistjobs.csv")  

2.3 Data Exploring

# 2.1 Data structure review
#str(data.trx)
# 2.2 Data preview

Checking a sample data…

datatable(data.text[(1:20),], filter = 'top', options = list(
  pageLength = 5, scrollX = TRUE, scrollY = "300px", autoWidth = TRUE))

3 Creating a Corpus

3.1 Processes

Performing cleansing, formatting, normalization,…

# Create corpus

corpus = Corpus(VectorSource(data.text$Description))

# Look at corpus
corpus
## <<SimpleCorpus>>
## Metadata:  corpus specific: 1, document level (indexed): 0
## Content:  documents: 40
# Convert to lower-case
corpus = tm_map(corpus, tolower)
# Remove punctuation
corpus = tm_map(corpus, removePunctuation)
# Look at stop words 
corpus = tm_map(corpus, removeWords, c(stopwords("en"),"will","etc","build","using"))

corpus <- tm_map(corpus, stripWhitespace)

corpus = tm_map(corpus, str_replace_all,"[^[:alnum:]]", " ")




#this below step is crucial, since it converts the list into an atomic matrix.
corpustdm <-TermDocumentMatrix(corpus)
corpustdm
## <<TermDocumentMatrix (terms: 2819, documents: 40)>>
## Non-/sparse entries: 9061/103699
## Sparsity           : 92%
## Maximal term length: 62
## Weighting          : term frequency (tf)
as.matrix(corpustdm)
##                                                                 Docs
## Terms                                                            1  2 3 4
##   125m                                                           1  0 0 0
##   401k                                                           1  0 0 0
##   900b                                                           1  0 0 0
##   able                                                           4  0 0 0
##   activities                                                     1  0 1 0
##   alerts                                                         1  0 0 0
##   allow                                                          1  0 0 0
##   also                                                           1  1 1 0
##   analysis                                                       5  0 2 2
##   anova                                                          1  0 0 0
##   app                                                            3  0 0 0
##   apple                                                          1  0 0 0
##   applying                                                       1  0 0 0
##   area                                                           1  0 0 0
##   ask                                                            1  0 0 0
##   assembled                                                      1  0 0 0
##   auc                                                            1  0 0 0
##   automate                                                       1  0 1 0
##   automation                                                     1  0 0 0
##   background                                                     1  1 0 0
##   base                                                           1  0 0 0
##   become                                                         1  0 0 1
##   benefits                                                       2  0 0 0
##   boldly                                                         1  0 0 0
##   brookfield                                                     1  0 0 0
##   building                                                       1  0 1 0
##   business                                                       2  1 6 6
##   calculate                                                      1  0 0 0
##   can                                                            2  0 0 0
##   candidate                                                      1  0 0 0
##   canonical                                                      1  0 0 0
##   capacity                                                       2  0 0 0
##   capital                                                        2  0 0 0
##   challenge                                                      1  0 0 0
##   changes                                                        3  0 0 0
##   chung                                                          1  0 0 0
##   cleaning                                                       1  0 0 0
##   code                                                           1  1 2 0
##   coding                                                         1  0 1 0
##   commands                                                       2  0 0 0
##   communicate                                                    2  0 1 1
##   communicator                                                   1  0 0 0
##   companies                                                      1  0 0 0
##   company                                                        3  0 1 1
##   compelling                                                     1  0 0 0
##   competitive                                                    1  0 0 0
##   completing                                                     1  0 0 0
##   concepts                                                       3  0 0 0
##   connect                                                        1  0 0 0
##   contribute                                                     1  0 0 0
##   country                                                        1  0 0 0
##   create                                                         1  0 0 0
##   creating                                                       1  1 0 0
##   criteria                                                       1  0 0 0
##   curiosity                                                      1  0 0 0
##   data                                                           7 11 8 5
##   dataset                                                        1  0 0 0
##   deep                                                           1  0 2 0
##   delivering                                                     1  0 0 0
##   dental                                                         1  0 0 0
##   designed                                                       1  0 0 0
##   differences                                                    1  0 0 0
##   digitizing                                                     1  0 0 0
##   doesnt                                                         1  0 0 0
##   domain                                                         3  0 0 0
##   done                                                           1  0 0 0
##   drayage                                                        1  0 0 0
##   drive                                                          1  0 0 0
##   driven                                                         1  0 1 0
##   drivers                                                        1  0 0 0
##   dynamics                                                       1  0 0 0
##   easy                                                           1  0 0 0
##   efficiencies                                                   1  0 0 0
##   elton                                                          1  0 0 0
##   end                                                            2  0 0 0
##   engage                                                         1  0 0 0
##   entire                                                         1  0 1 0
##   equity                                                         1  0 0 0
##   evidence                                                       1  0 0 0
##   exact                                                          1  0 0 0
##   examples                                                       1  0 0 0
##   execute                                                        1  0 0 0
##   experience                                                     5  4 5 4
##   explain                                                        1  0 0 0
##   feature                                                        1  0 0 0
##   find                                                           4  0 0 0
##   finding                                                        1  0 0 0
##   first                                                          1  0 0 0
##   fleet                                                          2  0 0 0
##   follow                                                         1  0 0 0
##   founded                                                        1  0 0 0
##   freight                                                        2  0 0 0
##   full                                                           1  0 0 0
##   functions                                                      1  0 0 0
##   general                                                        2  0 1 0
##   generalize                                                     1  0 0 0
##   gofundme                                                       1  0 0 0
##   google                                                         1  4 0 1
##   great                                                          1  0 0 0
##   guidelines                                                     1  0 0 0
##   happiest                                                       1  0 0 0
##   harness                                                        1  0 0 0
##   haves                                                          1  0 0 0
##   higher                                                         1  0 0 0
##   holidays                                                       1  0 0 0
##   hope                                                           1  0 0 0
##   hygiene                                                        1  0 0 0
##   idealab                                                        1  0 0 0
##   identify                                                       3  0 0 0
##   identifying                                                    1  0 0 0
##   includes                                                       1  0 1 0
##   including                                                      3  1 1 0
##   increased                                                      3  0 0 0
##   industry                                                       1  0 0 1
##   initial                                                        1  0 0 0
##   instantly                                                      1  0 0 0
##   interpretable                                                  1  0 0 0
##   intuitive                                                      1  0 0 0
##   issues                                                         1  0 0 0
##   kareo                                                          1  0 0 0
##   knowledgeable                                                  1  0 0 0
##   kpis                                                           1  0 0 0
##   language                                                       1  0 0 0
##   largest                                                        1  1 0 0
##   learn                                                          3  0 0 1
##   learning                                                       2  1 1 0
##   led                                                            1  0 0 0
##   level                                                          1  0 1 0
##   leverage                                                       1  0 0 0
##   lidia                                                          1  0 0 0
##   like                                                           1  0 0 0
##   load                                                           2  0 0 0
##   loads                                                          1  0 0 0
##   logistics                                                      3  0 0 0
##   looking                                                        1  0 0 0
##   machine                                                        2  1 1 0
##   maintainable                                                   1  0 0 0
##   make                                                           1  1 1 0
##   marketplace                                                    5  0 0 0
##   match                                                          4  0 0 0
##   matching                                                       1  0 0 0
##   meaningful                                                     2  0 0 0
##   measured                                                       1  0 0 0
##   medical                                                        1  0 0 0
##   metrics                                                        1  0 0 0
##   mission                                                        1  0 0 0
##   mobile                                                         2  0 0 0
##   model                                                          2  0 0 0
##   models                                                         1  1 1 1
##   movement                                                       1  0 0 0
##   need                                                           3  1 1 0
##   next                                                           4  0 0 0
##   nice                                                           1  0 0 0
##   ondemand                                                       1  0 0 0
##   one                                                            1  0 1 0
##   opportunities                                                  1  0 1 0
##   optimization                                                   1  1 0 0
##   otherwise                                                      1  0 0 0
##   outcomes                                                       1  0 0 0
##   overall                                                        1  0 0 0
##   packages                                                       1  0 0 0
##   people                                                         1  0 2 0
##   person                                                         4  0 0 0
##   pipelineperform                                                1  0 0 0
##   pipelines                                                      2  0 0 0
##   platform                                                       1  2 0 1
##   point                                                          1  0 0 0
##   potential                                                      1  0 0 0
##   power                                                          1  0 0 0
##   powers                                                         1  0 0 0
##   precisionrecall                                                1  0 0 0
##   previously                                                     1  0 0 0
##   process                                                        1  0 0 0
##   processing                                                     1  0 0 0
##   product                                                        1  1 0 0
##   prototype                                                      1  0 0 0
##   provide                                                        1  0 1 1
##   python                                                         2  1 1 0
##   pythonr                                                        1  0 0 0
##   raised                                                         1  0 0 0
##   rate                                                           3  0 1 0
##   real                                                           1  0 0 0
##   relationships                                                  1  0 0 0
##   reporting                                                      1  0 0 2
##   reproducible                                                   1  0 0 0
##   resolve                                                        1  0 0 0
##   rigorous                                                       1  0 0 0
##   robinson                                                       1  0 0 0
##   salary                                                         1  0 0 0
##   sales                                                          1  0 0 0
##   sample                                                         1  0 0 0
##   science                                                        1  1 0 0
##   sequoia                                                        1  0 0 0
##   setting                                                        1  0 0 0
##   shippers                                                       3  0 0 0
##   shipping                                                       1  0 0 0
##   shows                                                          1  0 0 0
##   simple                                                         1  0 0 0
##   size                                                           1  0 0 0
##   someone                                                        2  0 0 0
##   specifically                                                   1  0 0 0
##   splits                                                         1  0 0 0
##   sql                                                            2  2 1 1
##   startup                                                        1  0 0 0
##   statistical                                                    2  0 1 1
##   strategies                                                     1  0 0 0
##   success                                                        1  1 0 1
##   systems                                                        2  2 3 0
##   tables                                                         1  0 0 0
##   taking                                                         1  0 0 0
##   taught                                                         1  0 0 0
##   team                                                           4  2 2 1
##   teams                                                          1  1 2 1
##   tech                                                           1  0 0 0
##   technology                                                     3  1 2 0
##   tests                                                          3  0 0 0
##   throughout                                                     1  0 0 0
##   time                                                           1  0 0 0
##   tooling                                                        1  0 0 0
##   toolsets                                                       1  0 0 0
##   tracking                                                       1  0 0 0
##   training                                                       1  0 0 0
##   traintest                                                      1  0 0 0
##   transformations                                                1  0 0 0
##   transforming                                                   1  0 0 0
##   transparency                                                   1  0 0 0
##   truckercentric                                                 1  0 0 0
##   truckers                                                       2  0 0 0
##   trucking                                                       3  0 0 0
##   trusting                                                       1  0 0 0
##   ttest                                                          1  0 0 0
##   understanding                                                  3  0 1 0
##   unix                                                           2  0 0 0
##   updates                                                        1  0 0 0
##   use                                                            1  0 0 1
##   utility                                                        1  0 0 0
##   vacation                                                       1  0 0 0
##   venture                                                        1  0 0 0
##   venturebacked                                                  2  0 0 0
##   virtual                                                        1  0 0 0
##   vision                                                         1  0 0 0
##   visualizations                                                 1  0 1 1
##   way                                                            2  0 1 0
##   web                                                            1  0 0 0
##   whatever                                                       1  0 0 0
##   within                                                         2  0 0 0
##   words                                                          1  0 0 0
##   work                                                           1  0 4 1
##   worked                                                         1  0 0 0
##   works                                                          1  0 0 0
##   yan                                                            1  0 0 0
##   years                                                          1  2 2 2
##   360b                                                           0  1 0 0
##   algorithms                                                     0  2 0 0
##   analytics                                                      0  1 0 4
##   andor                                                          0  1 2 0
##   bachelor                                                       0  1 1 0
##   basis                                                          0  1 0 0
##   behavior                                                       0  1 0 0
##   believe                                                        0  1 0 0
##   big                                                            0  4 0 0
##   builds                                                         0  1 0 0
##   chance                                                         0  1 0 0
##   channel                                                        0  1 0 0
##   cloud                                                          0  1 1 0
##   committed                                                      0  1 0 0
##   comparable                                                     0  1 0 0
##   complex                                                        0  1 0 0
##   computation                                                    0  1 0 0
##   content                                                        0  2 0 0
##   conversion                                                     0  1 0 0
##   critical                                                       0  1 0 1
##   customer                                                       0  1 0 0
##   database                                                       0  1 0 0
##   decided                                                        0  1 0 0
##   decisions                                                      0  1 0 0
##   degree                                                         0  1 1 0
##   deliver                                                        0  1 0 0
##   design                                                         0  2 2 0
##   discovery                                                      0  1 0 0
##   distributed                                                    0  1 0 0
##   diversity                                                      0  1 1 0
##   downtown                                                       0  1 0 0
##   editorial                                                      0  1 0 0
##   editors                                                        0  1 0 0
##   employees                                                      0  1 0 0
##   employer                                                       0  1 1 0
##   employment                                                     0  1 4 0
##   engine                                                         0  1 0 0
##   environment                                                    0  4 0 0
##   equal                                                          0  1 2 0
##   field                                                          0  1 0 1
##   forms                                                          0  1 0 0
##   fox                                                            0  1 0 0
##   good                                                           0  1 0 0
##   hadoop                                                         0  4 0 0
##   hbase                                                          0  1 0 0
##   hdfs                                                           0  1 0 0
##   helps                                                          0  1 0 0
##   hiring                                                         0  1 0 0
##   hive                                                           0  1 0 0
##   hyperintelligent                                               0  1 0 0
##   implement                                                      0  1 1 0
##   inclusive                                                      0  1 0 0
##   increase                                                       0  1 0 1
##   informed                                                       0  1 0 0
##   initiatives                                                    0  1 0 0
##   innovating                                                     0  1 0 0
##   innovative                                                     0  1 0 0
##   interesting                                                    0  1 0 0
##   internet                                                       0  1 0 0
##   javascala                                                      0  1 0 0
##   job                                                            0  1 3 0
##   join                                                           0  1 0 0
##   kafka                                                          0  1 0 0
##   largescale                                                     0  1 0 0
##   leading                                                        0  1 0 0
##   loaded                                                         0  1 0 0
##   log                                                            0  1 0 0
##   maintain                                                       0  1 0 0
##   mapreduce                                                      0  1 0 0
##   massive                                                        0  1 0 0
##   merit                                                          0  1 0 0
##   month                                                          0  1 0 0
##   nbc                                                            0  1 0 0
##   newsroom                                                       0  2 0 0
##   nosql                                                          0  1 0 0
##   online                                                         0  1 0 0
##   opportunity                                                    0  1 2 0
##   personalization                                                0  1 0 0
##   petabyte                                                       0  1 0 0
##   pig                                                            0  1 0 0
##   plus                                                           0  1 0 1
##   populate                                                       0  1 0 0
##   powered                                                        0  1 0 0
##   prediction                                                     0  1 0 0
##   predictive                                                     0  2 0 0
##   preferably                                                     0  1 0 0
##   production                                                     0  2 0 0
##   products                                                       0  1 0 0
##   programming                                                    0  1 8 0
##   publisher                                                      0  1 0 0
##   qualifications                                                 0  1 3 1
##   quantitative                                                   0  1 0 1
##   query                                                          0  1 0 0
##   reached                                                        0  1 0 0
##   read                                                           0  1 0 0
##   readership                                                     0  1 0 0
##   recommendation                                                 0  1 0 0
##   recommendations                                                0  1 0 0
##   related                                                        0  1 1 1
##   requirements                                                   0  1 2 0
##   robust                                                         0  1 0 0
##   scaling                                                        0  1 0 0
##   scientist                                                      0  3 0 0
##   senior                                                         0  1 0 0
##   serving                                                        0  1 0 0
##   set                                                            0  1 0 0
##   sites                                                          0  1 0 0
##   solutions                                                      0  1 1 0
##   something                                                      0  1 0 0
##   spark                                                          0  1 0 0
##   specialinterest                                                0  1 0 0
##   sports                                                         0  1 0 0
##   stack                                                          0  1 0 0
##   statisticsbased                                                0  1 0 0
##   storage                                                        0  1 0 0
##   streaming                                                      0  1 0 0
##   support                                                        0  1 1 0
##   taboola                                                        0  6 0 0
##   targeting                                                      0  1 0 0
##   theres                                                         0  1 0 0
##   today                                                          0  2 0 0
##   tool                                                           0  1 0 0
##   transformation                                                 0  1 1 0
##   tribune                                                        0  1 0 0
##   unique                                                         0  1 0 0
##   usa                                                            0  1 0 0
##   users                                                          0  1 2 0
##   value                                                          0  1 1 0
##   visitors                                                       0  1 0 0
##   weather                                                        0  1 0 0
##   webs                                                           0  1 0 0
##   world                                                          0  1 1 0
##   worlds                                                         0  1 0 0
##   writers                                                        0  1 0 0
##   128                                                            0  0 1 0
##   144                                                            0  0 1 0
##   200000                                                         0  0 1 0
##   2017                                                           0  0 2 0
##   50year                                                         0  0 1 0
##   accommodations                                                 0  0 2 0
##   acquire                                                        0  0 1 0
##   across                                                         0  0 1 0
##   address                                                        0  0 1 0
##   adherence                                                      0  0 1 0
##   advanced                                                       0  0 2 1
##   age                                                            0  0 1 0
##   agile                                                          0  0 1 0
##   ambitions                                                      0  0 1 0
##   analysts                                                       0  0 1 0
##   analyticscientific                                             0  0 1 0
##   applicant                                                      0  0 1 0
##   applicants                                                     0  0 2 0
##   application                                                    0  0 1 0
##   applications                                                   0  0 1 0
##   apps                                                           0  0 2 0
##   architects                                                     0  0 1 0
##   architecture                                                   0  0 3 0
##   array                                                          0  0 1 0
##   assign                                                         0  0 1 0
##   attempt                                                        0  0 1 0
##   authorization                                                  0  0 2 0
##   available                                                      0  0 1 0
##   average                                                        0  0 1 0
##   billion                                                        0  0 2 0
##   breadth                                                        0  0 1 0
##   bug                                                            0  0 1 0
##   candidates                                                     0  0 1 0
##   capabilities                                                   0  0 1 0
##   capgemini                                                      0  0 7 0
##   changing                                                       0  0 1 0
##   characteristic                                                 0  0 1 0
##   click                                                          0  0 1 0
##   clients                                                        0  0 1 2
##   collaborate                                                    0  0 1 1
##   comes                                                          0  0 1 0
##   computer                                                       0  0 1 0
##   consider                                                       0  0 1 0
##   consideration                                                  0  0 1 0
##   consulting                                                     0  0 1 0
##   contemporary                                                   0  0 1 0
##   conviction                                                     0  0 1 0
##   coordinate                                                     0  0 1 0
##   count                                                          0  0 1 0
##   countries                                                      0  0 1 0
##   curation                                                       0  0 1 0
##   customize                                                      0  0 1 0
##   datasets                                                       0  0 1 0
##   delivery                                                       0  0 1 0
##   demands                                                        0  0 1 0
##   deploy                                                         0  0 1 0
##   deployment                                                     0  0 1 0
##   description                                                    0  0 2 0
##   designing                                                      0  0 1 0
##   develop                                                        0  0 2 1
##   developer                                                      0  0 1 0
##   developing                                                     0  0 1 1
##   development                                                    0  0 5 0
##   digital                                                        0  0 2 1
##   disabilities                                                   0  0 1 0
##   disability                                                     0  0 1 0
##   disseminate                                                    0  0 1 0
##   documentation                                                  0  0 1 0
##   documenting                                                    0  0 1 0
##   duties                                                         0  0 1 0
##   enable                                                         0  0 1 0
##   enables                                                        0  0 1 0
##   encouraging                                                    0  0 1 0
##   engineering                                                    0  0 4 0
##   enhance                                                        0  0 1 0
##   ensuring                                                       0  0 2 0
##   environmental                                                  0  0 1 0
##   eur                                                            0  0 1 0
##   evolving                                                       0  0 1 0
##   experienced                                                    0  0 1 0
##   expert                                                         0  0 1 0
##   expertise                                                      0  0 1 1
##   feedback                                                       0  0 1 0
##   fixing                                                         0  0 1 0
##   flexible                                                       0  0 1 0
##   following                                                      0  0 2 0
##   forefront                                                      0  0 1 0
##   frameworks                                                     0  0 2 0
##   function                                                       0  0 1 0
##   functional                                                     0  0 1 0
##   future                                                         0  0 2 0
##   gathering                                                      0  0 1 0
##   gender                                                         0  0 1 0
##   genetics                                                       0  0 1 0
##   global                                                         0  0 2 0
##   group                                                          0  0 1 0
##   guiding                                                        0  0 1 0
##   hardship                                                       0  0 1 0
##   help                                                           0  0 1 0
##   heritage                                                       0  0 1 0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw 0  0 1 0
##   identityexpression                                             0  0 1 0
##   implementing                                                   0  0 1 0
##   include                                                        0  0 1 0
##   individuals                                                    0  0 1 0
##   industryspecific                                               0  0 1 0
##   inform                                                         0  0 1 0
##   information                                                    0  0 1 0
##   innovation                                                     0  0 1 0
##   intended                                                       0  0 1 0
##   interpreting                                                   0  0 1 0
##   involve                                                        0  0 1 0
##   java                                                           0  0 1 0
##   junior                                                         0  0 1 1
##   knowledge                                                      0  0 3 1
##   landscape                                                      0  0 1 0
##   languages                                                      0  0 2 0
##   large                                                          0  0 1 0
##   law                                                            0  0 1 0
##   leader                                                         0  0 1 1
##   leadership                                                     0  0 1 0
##   lifecycle                                                      0  0 1 0
##   limited                                                        0  0 2 0
##   link                                                           0  0 1 0
##   manage                                                         0  0 1 0
##   management                                                     0  0 2 0
##   manipulation                                                   0  0 1 0
##   manner                                                         0  0 1 0
##   manufacturers                                                  0  0 1 0
##   marital                                                        0  0 1 0
##   matter                                                         0  0 1 0
##   may                                                            0  0 1 0
##   meetings                                                       0  0 3 0
##   members                                                        0  0 1 0
##   mental                                                         0  0 1 0
##   mentor                                                         0  0 2 0
##   mentoring                                                      0  0 1 0
##   methods                                                        0  0 1 0
##   might                                                          0  0 1 0
##   min                                                            0  0 1 0
##   monitoring                                                     0  0 1 0
##   multicultural                                                  0  0 1 0
##   must                                                           0  0 2 0
##   national                                                       0  0 1 0
##   necessary                                                      0  0 1 0
##   new                                                            0  0 2 1
##   now                                                            0  0 1 0
##   operations                                                     0  0 1 0
##   organizations                                                  0  0 1 0
##   orientation                                                    0  0 1 0
##   origin                                                         0  0 1 0
##   performed                                                      0  0 2 0
##   personnel                                                      0  0 1 0
##   physical                                                       0  0 1 0
##   platforms                                                      0  0 2 0
##   policies                                                       0  0 1 0
##   pose                                                           0  0 1 0
##   position                                                       0  0 2 0
##   prioritizing                                                   0  0 1 0
##   processes                                                      0  0 1 0
##   proficiency                                                    0  0 1 0
##   proficient                                                     0  0 1 0
##   program                                                        0  0 1 0
##   programmers                                                    0  0 5 0
##   programs                                                       0  0 1 0
##   project                                                        0  0 2 0
##   projectprogram                                                 0  0 1 0
##   projects                                                       0  0 1 1
##   protected                                                      0  0 1 0
##   provided                                                       0  0 1 0
##   qualified                                                      0  0 1 0
##   queuing                                                        0  0 1 0
##   race                                                           0  0 1 0
##   rawinterim                                                     0  0 1 0
##   realize                                                        0  0 1 0
##   reasonable                                                     0  0 1 0
##   receive                                                        0  0 1 0
##   referenced                                                     0  0 1 0
##   regard                                                         0  0 1 0
##   release                                                        0  0 1 0
##   relevant                                                       0  0 1 0
##   religion                                                       0  0 1 0
##   reported                                                       0  0 1 0
##   represent                                                      0  0 2 0
##   requests                                                       0  0 1 0
##   require                                                        0  0 1 0
##   required                                                       0  0 2 0
##   requirement                                                    0  0 1 0
##   responsibilities                                               0  0 2 1
##   responsible                                                    0  0 2 0
##   results                                                        0  0 1 0
##   revenues                                                       0  0 1 0
##   review                                                         0  0 1 0
##   reviewing                                                      0  0 1 0
##   reviews                                                        0  0 1 0
##   rights                                                         0  0 1 0
##   role                                                           0  0 1 1
##   rshiny                                                         0  0 2 0
##   scala                                                          0  0 1 0
##   sensory                                                        0  0 1 0
##   services                                                       0  0 2 0
##   sets                                                           0  0 1 0
##   sexual                                                         0  0 1 0
##   shiny                                                          0  0 3 0
##   skills                                                         0  0 2 1
##   software                                                       0  0 9 0
##   solution                                                       0  0 2 0
##   sponsor                                                        0  0 1 0
##   sponsorship                                                    0  0 1 0
##   status                                                         0  0 2 0
##   strategy                                                       0  0 1 0
##   strong                                                         0  0 1 2
##   supervise                                                      0  0 2 0
##   technical                                                      0  0 1 0
##   techniques                                                     0  0 1 0
##   testing                                                        0  0 2 0
##   tools                                                          0  0 1 2
##   traditionally                                                  0  0 1 0
##   train                                                          0  0 1 0
##   undue                                                          0  0 1 0
##   usd                                                            0  0 1 0
##   user                                                           0  0 1 0
##   valid                                                          0  0 1 0
##   various                                                        0  0 1 0
##   varying                                                        0  0 1 0
##   veteran                                                        0  0 1 0
##   visa                                                           0  0 1 0
##   visit                                                          0  0 1 0
##   visualize                                                      0  0 1 0
##   whenever                                                       0  0 1 0
##   willing                                                        0  0 1 0
##   without                                                        0  0 1 0
##   workplace                                                      0  0 1 0
##   written                                                        0  0 1 0
##   wwwcapgeminicom                                                0  0 1 0
##   ability                                                        0  0 0 1
##   advertising                                                    0  0 0 2
##   always                                                         0  0 0 1
##   analyst                                                        0  0 0 1
##   analytical                                                     0  0 0 1
##   analyze                                                        0  0 0 2
##   arise                                                          0  0 0 1
##   attention                                                      0  0 0 1
##   attribution                                                    0  0 0 1
##   best                                                           0  0 0 1
##   better                                                         0  0 0 1
##   blended                                                        0  0 0 1
##   campaigns                                                      0  0 0 1
##   client                                                         0  0 0 1
##   combined                                                       0  0 0 1
##   creative                                                       0  0 0 1
##   crossfunctional                                                0  0 0 1
##   cuttingedge                                                    0  0 0 1
##   dataminer                                                      0  0 0 1
##   dedication                                                     0  0 0 1
##   desire                                                         0  0 0 1
##   detail                                                         0  0 0 1
##   developers                                                     0  0 0 1
##   direct                                                         0  0 0 3
##   efficiency                                                     0  0 0 2
##   excel                                                          0  0 0 1
##   exceptional                                                    0  0 0 1
##   execution                                                      0  0 0 1
##   external                                                       0  0 0 1
##   findings                                                       0  0 0 1
##   gurudata                                                       0  0 0 1
##   healthy                                                        0  0 0 1
##   hoc                                                            0  0 0 1
##   important                                                      0  0 0 1
##   improve                                                        0  0 0 1
##   innovator                                                      0  0 0 1
##   integral                                                       0  0 0 1
##   intelligence                                                   0  0 0 2
##   intermedia                                                     0  0 0 3
##   internal                                                       0  0 0 1
##   investments                                                    0  0 0 1
##   manager                                                        0  0 0 1
##   market                                                         0  0 0 1
##   marketing                                                      0  0 0 3
##   master                                                         0  0 0 1
##   media                                                          0  0 0 2
##   microsoft                                                      0  0 0 2
##   multitask                                                      0  0 0 1
##   operational                                                    0  0 0 1
##   order                                                          0  0 0 1
##   part                                                           0  0 0 1
##   past                                                           0  0 0 1
##   patterns                                                       0  0 0 1
##   practices                                                      0  0 0 1
##   previous                                                       0  0 0 1
##   prime                                                          0  0 0 1
##   prioritize                                                     0  0 0 1
##   problem                                                        0  0 0 1
##   procedures                                                     0  0 0 1
##   produce                                                        0  0 0 1
##   professionally                                                 0  0 0 1
##   promote                                                        0  0 0 1
##   proprietary                                                    0  0 0 1
##   provides                                                       0  0 0 1
##   qlikview                                                       0  0 0 1
##   queries                                                        0  0 0 1
##   reliably                                                       0  0 0 1
##   reports                                                        0  0 0 1
##   research                                                       0  0 0 2
##   resources                                                      0  0 0 1
##   resultsoriented                                                0  0 0 1
##   return                                                         0  0 0 1
##   revenue                                                        0  0 0 1
##   scientistvisualization                                         0  0 0 1
##   seeking                                                        0  0 0 1
##   service                                                        0  0 0 1
##   solving                                                        0  0 0 1
##   special                                                        0  0 0 1
##   standard                                                       0  0 0 1
##   stored                                                         0  0 0 1
##   tableau                                                        0  0 0 1
##   technologies                                                   0  0 0 1
##   thinking                                                       0  0 0 1
##   thorough                                                       0  0 0 1
##   top                                                            0  0 0 1
##   traditional                                                    0  0 0 2
##   trends                                                         0  0 0 2
##   understand                                                     0  0 0 2
##   vital                                                          0  0 0 1
##   writing                                                        0  0 0 1
##   applicable                                                     0  0 0 0
##   clearly                                                        0  0 0 0
##   defined                                                        0  0 0 0
##   electrical                                                     0  0 0 0
##   fields                                                         0  0 0 0
##   fluent                                                         0  0 0 0
##   graduate                                                       0  0 0 0
##   insight                                                        0  0 0 0
##   problems                                                       0  0 0 0
##   pulling                                                        0  0 0 0
##   scope                                                          0  0 0 0
##   solve                                                          0  0 0 0
##   undergraduate                                                  0  0 0 0
##   1960                                                           0  0 0 0
##   access                                                         0  0 0 0
##   accredited                                                     0  0 0 0
##   achievable                                                     0  0 0 0
##   action                                                         0  0 0 0
##   active                                                         0  0 0 0
##   actively                                                       0  0 0 0
##   additional                                                     0  0 0 0
##   adversarial                                                    0  0 0 0
##   advisory                                                       0  0 0 0
##   aerospace                                                      0  0 0 0
##   afraid                                                         0  0 0 0
##   air                                                            0  0 0 0
##   algorithm                                                      0  0 0 0
##   among                                                          0  0 0 0
##   angeles                                                        0  0 0 0
##   anomalies                                                      0  0 0 0
##   apply                                                          0  0 0 0
##   architectures                                                  0  0 0 0
##   areas                                                          0  0 0 0
##   aspiration                                                     0  0 0 0
##   asset                                                          0  0 0 0
##   attack                                                         0  0 0 0
##   attacks                                                        0  0 0 0
##   bachelors                                                      0  0 0 0
##   beyond                                                         0  0 0 0
##   bigger                                                         0  0 0 0
##   bus                                                            0  0 0 0
##   career                                                         0  0 0 0
##   center                                                         0  0 0 0
##   challenges                                                     0  0 0 0
##   chosen                                                         0  0 0 0
##   citizenship                                                    0  0 0 0
##   clandestine                                                    0  0 0 0
##   classification                                                 0  0 0 0
##   classifier                                                     0  0 0 0
##   clearance                                                      0  0 0 0
##   collection                                                     0  0 0 0
##   color                                                          0  0 0 0
##   comfort                                                        0  0 0 0
##   commercial                                                     0  0 0 0
##   commitment                                                     0  0 0 0
##   common                                                         0  0 0 0
##   communication                                                  0  0 0 0
##   communications                                                 0  0 0 0
##   compartmented                                                  0  0 0 0
##   competitions                                                   0  0 0 0
##   competitor                                                     0  0 0 0
##   conduct                                                        0  0 0 0
##   corporation                                                    0  0 0 0
##   creates                                                        0  0 0 0
##   curious                                                        0  0 0 0
##   current                                                        0  0 0 0
##   cyber                                                          0  0 0 0
##   datacentric                                                    0  0 0 0
##   datascience                                                    0  0 0 0
##   demonstrated                                                   0  0 0 0
##   described                                                      0  0 0 0
##   details                                                        0  0 0 0
##   detect                                                         0  0 0 0
##   developed                                                      0  0 0 0
##   differing                                                      0  0 0 0
##   discriminated                                                  0  0 0 0
##   diverse                                                        0  0 0 0
##   eager                                                          0  0 0 0
##   economic                                                       0  0 0 0
##   effective                                                      0  0 0 0
##   efforts                                                        0  0 0 0
##   else                                                           0  0 0 0
##   enforcement                                                    0  0 0 0
##   engineer                                                       0  0 0 0
##   engineers                                                      0  0 0 0
##   every                                                          0  0 0 0
##   everyone                                                       0  0 0 0
##   excited                                                        0  0 0 0
##   existence                                                      0  0 0 0
##   expect                                                         0  0 0 0
##   explore                                                        0  0 0 0
##   exploring                                                      0  0 0 0
##   expression                                                     0  0 0 0
##   extensive                                                      0  0 0 0
##   extremely                                                      0  0 0 0
##   facilities                                                     0  0 0 0
##   familiarity                                                    0  0 0 0
##   federally                                                      0  0 0 0
##   ffrdc                                                          0  0 0 0
##   filled                                                         0  0 0 0
##   focused                                                        0  0 0 0
##   force                                                          0  0 0 0
##   formulation                                                    0  0 0 0
##   funded                                                         0  0 0 0
##   gamechanging                                                   0  0 0 0
##   gnu                                                            0  0 0 0
##   government                                                     0  0 0 0
##   gpus                                                           0  0 0 0
##   greatest                                                       0  0 0 0
##   groups                                                         0  0 0 0
##   growing                                                        0  0 0 0
##   handson                                                        0  0 0 0
##   hardware                                                       0  0 0 0
##   highly                                                         0  0 0 0
##   ideas                                                          0  0 0 0
##   identity                                                       0  0 0 0
##   image                                                          0  0 0 0
##   impossible                                                     0  0 0 0
##   inception                                                      0  0 0 0
##   independent                                                    0  0 0 0
##   innovators                                                     0  0 0 0
##   instead                                                        0  0 0 0
##   intelligent                                                    0  0 0 0
##   interview                                                      0  0 0 0
##   issued                                                         0  0 0 0
##   kagglelike                                                     0  0 0 0
##   keras                                                          0  0 0 0
##   key                                                            0  0 0 0
##   laboratory                                                     0  0 0 0
##   latest                                                         0  0 0 0
##   launch                                                         0  0 0 0
##   lead                                                           0  0 0 0
##   leaders                                                        0  0 0 0
##   let                                                            0  0 0 0
##   libraries                                                      0  0 0 0
##   limits                                                         0  0 0 0
##   literally                                                      0  0 0 0
##   los                                                            0  0 0 0
##   main                                                           0  0 0 0
##   major                                                          0  0 0 0
##   meet                                                           0  0 0 0
##   member                                                         0  0 0 0
##   membrtch                                                       0  0 0 0
##   methodology                                                    0  0 0 0
##   minds                                                          0  0 0 0
##   minimum                                                        0  0 0 0
##   modern                                                         0  0 0 0
##   much                                                           0  0 0 0
##   multiple                                                       0  0 0 0
##   nations                                                        0  0 0 0
##   nature                                                         0  0 0 0
##   nearest                                                        0  0 0 0
##   network                                                        0  0 0 0
##   neural                                                         0  0 0 0
##   neurons                                                        0  0 0 0
##   none                                                           0  0 0 0
##   objective                                                      0  0 0 0
##   obtain                                                         0  0 0 0
##   obtaining                                                      0  0 0 0
##   office                                                         0  0 0 0
##   operate                                                        0  0 0 0
##   opportunityaffirmative                                         0  0 0 0
##   others                                                         0  0 0 0
##   partner                                                        0  0 0 0
##   pass                                                           0  0 0 0
##   passion                                                        0  0 0 0
##   passionate                                                     0  0 0 0
##   pay                                                            0  0 0 0
##   perspectives                                                   0  0 0 0
##   platypus                                                       0  0 0 0
##   policy                                                         0  0 0 0
##   polygraph                                                      0  0 0 0
##   possible                                                       0  0 0 0
##   poster                                                         0  0 0 0
##   potentially                                                    0  0 0 0
##   preferred                                                      0  0 0 0
##   pride                                                          0  0 0 0
##   problemsolving                                                 0  0 0 0
##   producing                                                      0  0 0 0
##   prototypes                                                     0  0 0 0
##   pushing                                                        0  0 0 0
##   pytorch                                                        0  0 0 0
##   radio                                                          0  0 0 0
##   radios                                                         0  0 0 0
##   rare                                                           0  0 0 0
##   readiness                                                      0  0 0 0
##   ready                                                          0  0 0 0
##   realworld                                                      0  0 0 0
##   reconnaissance                                                 0  0 0 0
##   regression                                                     0  0 0 0
##   regular                                                        0  0 0 0
##   reinforcement                                                  0  0 0 0
##   relocation                                                     0  0 0 0
##   requires                                                       0  0 0 0
##   requisition                                                    0  0 0 0
##   resource                                                       0  0 0 0
##   satellite                                                      0  0 0 0
##   schedule                                                       0  0 0 0
##   scientific                                                     0  0 0 0
##   scientists                                                     0  0 0 0
##   scikitlearn                                                    0  0 0 0
##   secret                                                         0  0 0 0
##   security                                                       0  0 0 0
##   segment                                                        0  0 0 0
##   sensitive                                                      0  0 0 0
##   serve                                                          0  0 0 0
##   share                                                          0  0 0 0
##   simulation                                                     0  0 0 0
##   simultaneously                                                 0  0 0 0
##   since                                                          0  0 0 0
##   skilled                                                        0  0 0 0
##   small                                                          0  0 0 0
##   solid                                                          0  0 0 0
##   space                                                          0  0 0 0
##   spacerelated                                                   0  0 0 0
##   spanning                                                       0  0 0 0
##   specialist                                                     0  0 0 0
##   specialized                                                    0  0 0 0
##   staff                                                          0  0 0 0
##   staffed                                                        0  0 0 0
##   statement                                                      0  0 0 0
##   stateoftheart                                                  0  0 0 0
##   states                                                         0  0 0 0
##   stf                                                            0  0 0 0
##   strength                                                       0  0 0 0
##   studies                                                        0  0 0 0
##   superior                                                       0  0 0 0
##   supervised                                                     0  0 0 0
##   supplement                                                     0  0 0 0
##   system                                                         0  0 0 0
##   takes                                                          0  0 0 0
##   technologically                                                0  0 0 0
##   telecom                                                        0  0 0 0
##   telecommunication                                              0  0 0 0
##   telecommunications                                             0  0 0 0
##   tensorflow                                                     0  0 0 0
##   theano                                                         0  0 0 0
##   theoretical                                                    0  0 0 0
##   theoretically                                                  0  0 0 0
##   thought                                                        0  0 0 0
##   title                                                          0  0 0 0
##   transcript                                                     0  0 0 0
##   transcripts                                                    0  0 0 0
##   trusted                                                        0  0 0 0
##   tssci                                                          0  0 0 0
##   type                                                           0  0 0 0
##   unconventional                                                 0  0 0 0
##   united                                                         0  0 0 0
##   university                                                     0  0 0 0
##   unsupervised                                                   0  0 0 0
##   valued                                                         0  0 0 0
##   veles                                                          0  0 0 0
##   verbal                                                         0  0 0 0
##   well                                                           0  0 0 0
##   whose                                                          0  0 0 0
##   workforce                                                      0  0 0 0
##   working                                                        0  0 0 0
##   yes                                                            0  0 0 0
##   zone                                                           0  0 0 0
##   acumen                                                         0  0 0 0
##   agent                                                          0  0 0 0
##   agree                                                          0  0 0 0
##   amongst                                                        0  0 0 0
##   ample                                                          0  0 0 0
##   capable                                                        0  0 0 0
##   composed                                                       0  0 0 0
##   contacted                                                      0  0 0 0
##   enjoy                                                          0  0 0 0
##   essential                                                      0  0 0 0
##   experts                                                        0  0 0 0
##   extract                                                        0  0 0 0
##   facebook                                                       0  0 0 0
##   fulltime                                                       0  0 0 0
##   hands                                                          0  0 0 0
##   hire                                                           0  0 0 0
##   inc                                                            0  0 0 0
##   indeed                                                         0  0 0 0
##   insights                                                       0  0 0 0
##   mind                                                           0  0 0 0
##   motivated                                                      0  0 0 0
##   numpy                                                          0  0 0 0
##   pandas                                                         0  0 0 0
##   papers                                                         0  0 0 0
##   phone                                                          0  0 0 0
##   productize                                                     0  0 0 0
##   quickly                                                        0  0 0 0
##   rely                                                           0  0 0 0
##   scalable                                                       0  0 0 0
##   sciencerelated                                                 0  0 0 0
##   sparkscalajava                                                 0  0 0 0
##   statistics                                                     0  0 0 0
##   structured                                                     0  0 0 0
##   text                                                           0  0 0 0
##   theory                                                         0  0 0 0
##   together                                                       0  0 0 0
##   uber                                                           0  0 0 0
##   unstructured                                                   0  0 0 0
##   valuable                                                       0  0 0 0
##   via                                                            0  0 0 0
##   worldclass                                                     0  0 0 0
##   year                                                           0  0 0 0
##   accelerate                                                     0  0 0 0
##   actionable                                                     0  0 0 0
##   actions                                                        0  0 0 0
##   addition                                                       0  0 0 0
##   adequately                                                     0  0 0 0
##   agency                                                         0  0 0 0
##   assist                                                         0  0 0 0
##   benefit                                                        0  0 0 0
##   cgi                                                            0  0 0 0
##   change                                                         0  0 0 0
##   collectively                                                   0  0 0 0
##   college                                                        0  0 0 0
##   come                                                           0  0 0 0
##   continues                                                      0  0 0 0
##   culture                                                        0  0 0 0
##   dashboards                                                     0  0 0 0
##   datahadoopnosql                                                0  0 0 0
##   desired                                                        0  0 0 0
##   discover                                                       0  0 0 0
##   discovering                                                    0  0 0 0
##   doctorate                                                      0  0 0 0
##   eco                                                            0  0 0 0
##   engineeringscience                                             0  0 0 0
##   exciting                                                       0  0 0 0
##   exploration                                                    0  0 0 0
##   extraordinary                                                  0  0 0 0
##   firms                                                          0  0 0 0
##   fouryear                                                       0  0 0 0
##   graduation                                                     0  0 0 0
##   helping                                                        0  0 0 0
##   heuristics                                                     0  0 0 0
##   high                                                           0  0 0 0
##   identifybuild                                                  0  0 0 0
##   impact                                                         0  0 0 0
##   improving                                                      0  0 0 0
##   interactive                                                    0  0 0 0
##   journeys                                                       0  0 0 0
##   levels                                                         0  0 0 0
##   managers                                                       0  0 0 0
##   material                                                       0  0 0 0
##   mathematics                                                    0  0 0 0
##   mining                                                         0  0 0 0
##   modeling                                                       0  0 0 0
##   monitor                                                        0  0 0 0
##   narrative                                                      0  0 0 0
##   narratives                                                     0  0 0 0
##   offer                                                          0  0 0 0
##   offering                                                       0  0 0 0
##   often                                                          0  0 0 0
##   ownership                                                      0  0 0 0
##   perform                                                        0  0 0 0
##   physics                                                        0  0 0 0
##   please                                                         0  0 0 0
##   practiced                                                      0  0 0 0
##   present                                                        0  0 0 0
##   professionals                                                  0  0 0 0
##   referrals                                                      0  0 0 0
##   reinforces                                                     0  0 0 0
##   rewards                                                        0  0 0 0
##   run                                                            0  0 0 0
##   sas                                                            0  0 0 0
##   scientistwill                                                  0  0 0 0
##   stakeholders                                                   0  0 0 0
##   statisticml                                                    0  0 0 0
##   supporting                                                     0  0 0 0
##   talent                                                         0  0 0 0
##   tell                                                           0  0 0 0
##   test                                                           0  0 0 0
##   told                                                           0  0 0 0
##   translating                                                    0  0 0 0
##   unsolicited                                                    0  0 0 0
##   wellsupported                                                  0  0 0 0
##   wwwcgicom                                                      0  0 0 0
##   310                                                            0  0 0 0
##   accuracy                                                       0  0 0 0
##   adhoc                                                          0  0 0 0
##   advancements                                                   0  0 0 0
##   aligned                                                        0  0 0 0
##   amazon                                                         0  0 0 0
##   ambiguous                                                      0  0 0 0
##   aptitude                                                       0  0 0 0
##   around                                                         0  0 0 0
##   assigned                                                       0  0 0 0
##   assurance                                                      0  0 0 0
##   atmosphere                                                     0  0 0 0
##   attain                                                         0  0 0 0
##   azure                                                          0  0 0 0
##   clean                                                          0  0 0 0
##   closely                                                        0  0 0 0
##   concise                                                        0  0 0 0
##   consult                                                        0  0 0 0
##   conveying                                                      0  0 0 0
##   creation                                                       0  0 0 0
##   custom                                                         0  0 0 0
##   databases                                                      0  0 0 0
##   datadriven                                                     0  0 0 0
##   decision                                                       0  0 0 0
##   department                                                     0  0 0 0
##   derive                                                         0  0 0 0
##   dev                                                            0  0 0 0
##   ensure                                                         0  0 0 0
##   evaluate                                                       0  0 0 0
##   excellent                                                      0  0 0 0
##   extracted                                                      0  0 0 0
##   extracting                                                     0  0 0 0
##   fastpaced                                                      0  0 0 0
##   focus                                                          0  0 0 0
##   fulfill                                                        0  0 0 0
##   goals                                                          0  0 0 0
##   heavy                                                          0  0 0 0
##   highvisibility                                                 0  0 0 0
##   independently                                                  0  0 0 0
##   informing                                                      0  0 0 0
##   infrastructure                                                 0  0 0 0
##   interpersonal                                                  0  0 0 0
##   look                                                           0  0 0 0
##   makes                                                          0  0 0 0
##   making                                                         0  0 0 0
##   manipulating                                                   0  0 0 0
##   mindbody                                                       0  0 0 0
##   mindset                                                        0  0 0 0
##   needed                                                         0  0 0 0
##   numbers                                                        0  0 0 0
##   organized                                                      0  0 0 0
##   participate                                                    0  0 0 0
##   performing                                                     0  0 0 0
##   principal                                                      0  0 0 0
##   prod                                                           0  0 0 0
##   promoting                                                      0  0 0 0
##   pte                                                            0  0 0 0
##   quality                                                        0  0 0 0
##   quantifying                                                    0  0 0 0
##   redshift                                                       0  0 0 0
##   rest                                                           0  0 0 0
##   salesforce                                                     0  0 0 0
##   schemas                                                        0  0 0 0
##   scripts                                                        0  0 0 0
##   sense                                                          0  0 0 0
##   smes                                                           0  0 0 0
##   ssis                                                           0  0 0 0
##   startuplike                                                    0  0 0 0
##   subject                                                        0  0 0 0
##   tasks                                                          0  0 0 0
##   units                                                          0  0 0 0
##   usage                                                          0  0 0 0
##   visual                                                         0  0 0 0
##   write                                                          0  0 0 0
##   100                                                            0  0 0 0
##   3rd                                                            0  0 0 0
##   aggregation                                                    0  0 0 0
##   along                                                          0  0 0 0
##   analyses                                                       0  0 0 0
##   bayesian                                                       0  0 0 0
##   boosting                                                       0  0 0 0
##   bootstrap                                                      0  0 0 0
##   businesses                                                     0  0 0 0
##   california                                                     0  0 0 0
##   claritas                                                       0  0 0 0
##   communities                                                    0  0 0 0
##   complete                                                       0  0 0 0
##   consumer                                                       0  0 0 0
##   copper                                                         0  0 0 0
##   customers                                                      0  0 0 0
##   demand                                                         0  0 0 0
##   demographic                                                    0  0 0 0
##   descriptive                                                    0  0 0 0
##   desirable                                                      0  0 0 0
##   directly                                                       0  0 0 0
##   discipline                                                     0  0 0 0
##   document                                                       0  0 0 0
##   dvr                                                            0  0 0 0
##   econometrics                                                   0  0 0 0
##   effectiveness                                                  0  0 0 0
##   emerging                                                       0  0 0 0
##   enhanced                                                       0  0 0 0
##   enterprise                                                     0  0 0 0
##   evaluation                                                     0  0 0 0
##   fiberoptic                                                     0  0 0 0
##   fios                                                           0  0 0 0
##   firmagraphic                                                   0  0 0 0
##   forecasting                                                    0  0 0 0
##   formats                                                        0  0 0 0
##   fort                                                           0  0 0 0
##   frontier                                                       0  0 0 0
##   ftr                                                            0  0 0 0
##   gather                                                         0  0 0 0
##   heavily                                                        0  0 0 0
##   highspeed                                                      0  0 0 0
##   home                                                           0  0 0 0
##   instant                                                        0  0 0 0
##   instructions                                                   0  0 0 0
##   irving                                                         0  0 0 0
##   linear                                                         0  0 0 0
##   locale                                                         0  0 0 0
##   location                                                       0  0 0 0
##   logistic                                                       0  0 0 0
##   machines                                                       0  0 0 0
##   manipulate                                                     0  0 0 0
##   medium                                                         0  0 0 0
##   methodologies                                                  0  0 0 0
##   multivariate                                                   0  0 0 0
##   nasdaq                                                         0  0 0 0
##   navigate                                                       0  0 0 0
##   networks                                                       0  0 0 0
##   newly                                                          0  0 0 0
##   oaks                                                           0  0 0 0
##   offerings                                                      0  0 0 0
##   offers                                                         0  0 0 0
##   oracle                                                         0  0 0 0
##   oral                                                           0  0 0 0
##   partnering                                                     0  0 0 0
##   party                                                          0  0 0 0
##   percent                                                        0  0 0 0
##   picture                                                        0  0 0 0
##   protection                                                     0  0 0 0
##   providing                                                      0  0 0 0
##   rdbms                                                          0  0 0 0
##   regularly                                                      0  0 0 0
##   relational                                                     0  0 0 0
##   residential                                                    0  0 0 0
##   rural                                                          0  0 0 0
##   scenarios                                                      0  0 0 0
##   search                                                         0  0 0 0
##   secure                                                         0  0 0 0
##   series                                                         0  0 0 0
##   server                                                         0  0 0 0
##   servers                                                        0  0 0 0
##   skillsrequirements                                             0  0 0 0
##   someall                                                        0  0 0 0
##   sources                                                        0  0 0 0
##   southern                                                       0  0 0 0
##   specific                                                       0  0 0 0
##   ssms                                                           0  0 0 0
##   structures                                                     0  0 0 0
##   suburban                                                       0  0 0 0
##   suite                                                          0  0 0 0
##   tampa                                                          0  0 0 0
##   thousand                                                       0  0 0 0
##   total                                                          0  0 0 0
##   translate                                                      0  0 0 0
##   trees                                                          0  0 0 0
##   types                                                          0  0 0 0
##   urban                                                          0  0 0 0
##   vantage                                                        0  0 0 0
##   variety                                                        0  0 0 0
##   vector                                                         0  0 0 0
##   video                                                          0  0 0 0
##   voice                                                          0  0 0 0
##   wayne                                                          0  0 0 0
##   wwwfrontiercom                                                 0  0 0 0
##   addons                                                         0  0 0 0
##   amazing                                                        0  0 0 0
##   bonus                                                          0  0 0 0
##   bring                                                          0  0 0 0
##   catered                                                        0  0 0 0
##   clear                                                          0  0 0 0
##   clustering                                                     0  0 0 0
##   combine                                                        0  0 0 0
##   constrained                                                    0  0 0 0
##   continuous                                                     0  0 0 0
##   convey                                                         0  0 0 0
##   credit                                                         0  0 0 0
##   date                                                           0  0 0 0
##   decisionmaking                                                 0  0 0 0
##   dedicated                                                      0  0 0 0
##   deploying                                                      0  0 0 0
##   drinks                                                         0  0 0 0
##   economics                                                      0  0 0 0
##   either                                                         0  0 0 0
##   events                                                         0  0 0 0
##   executives                                                     0  0 0 0
##   existing                                                       0  0 0 0
##   fabfitfun                                                      0  0 0 0
##   fastgrowing                                                    0  0 0 0
##   free                                                           0  0 0 0
##   fsa                                                            0  0 0 0
##   get                                                            0  0 0 0
##   hierarchical                                                   0  0 0 0
##   highprofile                                                    0  0 0 0
##   highvolume                                                     0  0 0 0
##   holistic                                                       0  0 0 0
##   ideal                                                          0  0 0 0
##   inference                                                      0  0 0 0
##   kitchen                                                        0  0 0 0
##   lifetime                                                       0  0 0 0
##   looker                                                         0  0 0 0
##   maintaining                                                    0  0 0 0
##   masters                                                        0  0 0 0
##   meals                                                          0  0 0 0
##   natural                                                        0  0 0 0
##   nlp                                                            0  0 0 0
##   optimize                                                       0  0 0 0
##   optimizing                                                     0  0 0 0
##   phd                                                            0  0 0 0
##   points                                                         0  0 0 0
##   proven                                                         0  0 0 0
##   psychology                                                     0  0 0 0
##   pto                                                            0  0 0 0
##   quarterly                                                      0  0 0 0
##   recommender                                                    0  0 0 0
##   retention                                                      0  0 0 0
##   rich                                                           0  0 0 0
##   segmentation                                                   0  0 0 0
##   snacks                                                         0  0 0 0
##   start                                                          0  0 0 0
##   stocked                                                        0  0 0 0
##   store                                                          0  0 0 0
##   subscription                                                   0  0 0 0
##   surveys                                                        0  0 0 0
##   tackle                                                         0  0 0 0
##   take                                                           0  0 0 0
##   transactions                                                   0  0 0 0
##   tune                                                           0  0 0 0
##   unit                                                           0  0 0 0
##   unlimited                                                      0  0 0 0
##   used                                                           0  0 0 0
##   visualization                                                  0  0 0 0
##   youll                                                          0  0 0 0
##   2011                                                           0  0 0 0
##   achieve                                                        0  0 0 0
##   advise                                                         0  0 0 0
##   assess                                                         0  0 0 0
##   awesome                                                        0  0 0 0
##   back                                                           0  0 0 0
##   bathroom                                                       0  0 0 0
##   beach                                                          0  0 0 0
##   breathe                                                        0  0 0 0
##   care                                                           0  0 0 0
##   challenging                                                    0  0 0 0
##   close                                                          0  0 0 0
##   cluster                                                        0  0 0 0
##   collaboration                                                  0  0 0 0
##   computational                                                  0  0 0 0
##   computing                                                      0  0 0 0
##   concerns                                                       0  0 0 0
##   dig                                                            0  0 0 0
##   disrupt                                                        0  0 0 0
##   donnas                                                         0  0 0 0
##   dsc                                                            0  0 0 0
##   egos                                                           0  0 0 0
##   enthusiasm                                                     0  0 0 0
##   equivalent                                                     0  0 0 0
##   establishing                                                   0  0 0 0
##   estimate                                                       0  0 0 0
##   excellence                                                     0  0 0 0
##   expanded                                                       0  0 0 0
##   experimental                                                   0  0 0 0
##   feasibility                                                    0  0 0 0
##   fit                                                            0  0 0 0
##   fluency                                                        0  0 0 0
##   folks                                                          0  0 0 0
##   foundations                                                    0  0 0 0
##   freshly                                                        0  0 0 0
##   generate                                                       0  0 0 0
##   goal                                                           0  0 0 0
##   hair                                                           0  0 0 0
##   haircuts                                                       0  0 0 0
##   happy                                                          0  0 0 0
##   heart                                                          0  0 0 0
##   hours                                                          0  0 0 0
##   humor                                                          0  0 0 0
##   hypothesis                                                     0  0 0 0
##   implementation                                                 0  0 0 0
##   indepth                                                        0  0 0 0
##   industries                                                     0  0 0 0
##   jerks                                                          0  0 0 0
##   just                                                           0  0 0 0
##   killer                                                         0  0 0 0
##   later                                                          0  0 0 0
##   live                                                           0  0 0 0
##   lunches                                                        0  0 0 0
##   mathematical                                                   0  0 0 0
##   millions                                                       0  0 0 0
##   nontechnical                                                   0  0 0 0
##   openair                                                        0  0 0 0
##   owning                                                         0  0 0 0
##   perks                                                          0  0 0 0
##   plan                                                           0  0 0 0
##   planning                                                       0  0 0 0
##   predict                                                        0  0 0 0
##   prima                                                          0  0 0 0
##   principles                                                     0  0 0 0
##   productionize                                                  0  0 0 0
##   productionizing                                                0  0 0 0
##   prototyping                                                    0  0 0 0
##   rapidly                                                        0  0 0 0
##   razors                                                         0  0 0 0
##   refactor                                                       0  0 0 0
##   reinventing                                                    0  0 0 0
##   renovated                                                      0  0 0 0
##   right                                                          0  0 0 0
##   roi                                                            0  0 0 0
##   said                                                           0  0 0 0
##   selection                                                      0  0 0 0
##   selflearning                                                   0  0 0 0
##   shave                                                          0  0 0 0
##   signals                                                        0  0 0 0
##   silicon                                                        0  0 0 0
##   similar                                                        0  0 0 0
##   skin                                                           0  0 0 0
##   specializes                                                    0  0 0 0
##   sprint                                                         0  0 0 0
##   squad                                                          0  0 0 0
##   started                                                        0  0 0 0
##   statements                                                     0  0 0 0
##   stay                                                           0  0 0 0
##   storytelling                                                   0  0 0 0
##   styling                                                        0  0 0 0
##   summary                                                        0  0 0 0
##   task                                                           0  0 0 0
##   teach                                                          0  0 0 0
##   teammates                                                      0  0 0 0
##   teamplaying                                                    0  0 0 0
##   testable                                                       0  0 0 0
##   think                                                          0  0 0 0
##   tractable                                                      0  0 0 0
##   transport                                                      0  0 0 0
##   tuning                                                         0  0 0 0
##   workflow                                                       0  0 0 0
##   wrangling                                                      0  0 0 0
##   496858                                                         0  0 0 0
##   675583                                                         0  0 0 0
##   advancing                                                      0  0 0 0
##   analyzing                                                      0  0 0 0
##   attach                                                         0  0 0 0
##   calmhsa                                                        0  0 0 0
##   categories                                                     0  0 0 0
##   certain                                                        0  0 0 0
##   chatting                                                       0  0 0 0
##   check                                                          0  0 0 0
##   conditions                                                     0  0 0 0
##   confirm                                                        0  0 0 0
##   contract                                                       0  0 0 0
##   contractor                                                     0  0 0 0
##   contractssubcontracts                                          0  0 0 0
##   covered                                                        0  0 0 0
##   created                                                        0  0 0 0
##   dana                                                           0  0 0 0
##   describing                                                     0  0 0 0
##   direction                                                      0  0 0 0
##   everify                                                        0  0 0 0
##   expected                                                       0  0 0 0
##   faculty                                                        0  0 0 0
##   federal                                                        0  0 0 0
##   final                                                          0  0 0 0
##   health                                                         0  0 0 0
##   incumbent                                                      0  0 0 0
##   inn                                                            0  0 0 0
##   interact                                                       0  0 0 0
##   interactions                                                   0  0 0 0
##   irvine                                                         0  0 0 0
##   kai                                                            0  0 0 0
##   listeners                                                      0  0 0 0
##   managing                                                       0  0 0 0
##   monthly                                                        0  0 0 0
##   mukamel                                                        0  0 0 0
##   multiyear                                                      0  0 0 0
##   nondiscrimination                                              0  0 0 0
##   objectives                                                     0  0 0 0
##   offered                                                        0  0 0 0
##   professors                                                     0  0 0 0
##   researchers                                                    0  0 0 0
##   resume                                                         0  0 0 0
##   sex                                                            0  0 0 0
##   statewide                                                      0  0 0 0
##   study                                                          0  0 0 0
##   substantial                                                    0  0 0 0
##   supervision                                                    0  0 0 0
##   two                                                            0  0 0 0
##   variables                                                      0  0 0 0
##   vendors                                                        0  0 0 0
##   zheng                                                          0  0 0 0
##   13485                                                          0  0 0 0
##   acts                                                           0  0 0 0
##   advance                                                        0  0 0 0
##   advantage                                                      0  0 0 0
##   alleviate                                                      0  0 0 0
##   amounts                                                        0  0 0 0
##   approaches                                                     0  0 0 0
##   arrangement                                                    0  0 0 0
##   aspects                                                        0  0 0 0
##   assistance                                                     0  0 0 0
##   automated                                                      0  0 0 0
##   aws                                                            0  0 0 0
##   careers                                                        0  0 0 0
##   catering                                                       0  0 0 0
##   central                                                        0  0 0 0
##   cgm                                                            0  0 0 0
##   chronic                                                        0  0 0 0
##   clinical                                                       0  0 0 0
##   closed                                                         0  0 0 0
##   conducts                                                       0  0 0 0
##   correct                                                        0  0 0 0
##   cost                                                           0  0 0 0
##   customized                                                     0  0 0 0
##   day                                                            0  0 0 0
##   describe                                                       0  0 0 0
##   develops                                                       0  0 0 0
##   devices                                                        0  0 0 0
##   diabetes                                                       0  0 0 0
##   difference                                                     0  0 0 0
##   disease                                                        0  0 0 0
##   driving                                                        0  0 0 0
##   educational                                                    0  0 0 0
##   elevating                                                      0  0 0 0
##   employee                                                       0  0 0 0
##   endtoend                                                       0  0 0 0
##   exhaustive                                                     0  0 0 0
##   extend                                                         0  0 0 0
##   family                                                         0  0 0 0
##   fda                                                            0  0 0 0
##   financial                                                      0  0 0 0
##   fully                                                          0  0 0 0
##   gain                                                           0  0 0 0
##   gift                                                           0  0 0 0
##   glucose                                                        0  0 0 0
##   grants                                                         0  0 0 0
##   grow                                                           0  0 0 0
##   h20ai                                                          0  0 0 0
##   happen                                                         0  0 0 0
##   healthcare                                                     0  0 0 0
##   innovations                                                    0  0 0 0
##   inspects                                                       0  0 0 0
##   insulin                                                        0  0 0 0
##   iso                                                            0  0 0 0
##   keep                                                           0  0 0 0
##   leave                                                          0  0 0 0
##   liaison                                                        0  0 0 0
##   life                                                           0  0 0 0
##   list                                                           0  0 0 0
##   lives                                                          0  0 0 0
##   located                                                        0  0 0 0
##   locations                                                      0  0 0 0
##   loop                                                           0  0 0 0
##   lowering                                                       0  0 0 0
##   made                                                           0  0 0 0
##   maintains                                                      0  0 0 0
##   managed                                                        0  0 0 0
##   manages                                                        0  0 0 0
##   math                                                           0  0 0 0
##   maximize                                                       0  0 0 0
##   medtronic                                                      0  0 0 0
##   mentality                                                      0  0 0 0
##   met                                                            0  0 0 0
##   meter                                                          0  0 0 0
##   mines                                                          0  0 0 0
##   modelling                                                      0  0 0 0
##   needs                                                          0  0 0 0
##   nonrelational                                                  0  0 0 0
##   novel                                                          0  0 0 0
##   paid                                                           0  0 0 0
##   pain                                                           0  0 0 0
##   patient                                                        0  0 0 0
##   patients                                                       0  0 0 0
##   pens                                                           0  0 0 0
##   physiology                                                     0  0 0 0
##   place                                                          0  0 0 0
##   positive                                                       0  0 0 0
##   precise                                                        0  0 0 0
##   prior                                                          0  0 0 0
##   productivity                                                   0  0 0 0
##   pump                                                           0  0 0 0
##   pumps                                                          0  0 0 0
##   push                                                           0  0 0 0
##   raise                                                          0  0 0 0
##   range                                                          0  0 0 0
##   raw                                                            0  0 0 0
##   record                                                         0  0 0 0
##   regulations                                                    0  0 0 0
##   remote                                                         0  0 0 0
##   report                                                         0  0 0 0
##   representative                                                 0  0 0 0
##   restore                                                        0  0 0 0
##   retirement                                                     0  0 0 0
##   rewarding                                                      0  0 0 0
##   roadmap                                                        0  0 0 0
##   scripting                                                      0  0 0 0
##   section                                                        0  0 0 0
##   shape                                                          0  0 0 0
##   simplify                                                       0  0 0 0
##   stock                                                          0  0 0 0
##   succeed                                                        0  0 0 0
##   successfully                                                   0  0 0 0
##   target                                                         0  0 0 0
##   thankyou                                                       0  0 0 0
##   therapies                                                      0  0 0 0
##   therapy                                                        0  0 0 0
##   things                                                         0  0 0 0
##   thrills                                                        0  0 0 0
##   tomorrow                                                       0  0 0 0
##   toward                                                         0  0 0 0
##   track                                                          0  0 0 0
##   transform                                                      0  0 0 0
##   transforms                                                     0  0 0 0
##   ultimate                                                       0  0 0 0
##   uninformative                                                  0  0 0 0
##   universal                                                      0  0 0 0
##   uptodate                                                       0  0 0 0
##   utilizing                                                      0  0 0 0
##   valuebased                                                     0  0 0 0
##   vast                                                           0  0 0 0
##   verifies                                                       0  0 0 0
##   volunteer                                                      0  0 0 0
##   want                                                           0  0 0 0
##   ways                                                           0  0 0 0
##   wellbeing                                                      0  0 0 0
##   worldwide                                                      0  0 0 0
##   yesterday                                                      0  0 0 0
##   allowing                                                       0  0 0 0
##   annually                                                       0  0 0 0
##   apache                                                         0  0 0 0
##   apis                                                           0  0 0 0
##   attendance                                                     0  0 0 0
##   attract                                                        0  0 0 0
##   availability                                                   0  0 0 0
##   based                                                          0  0 0 0
##   bestinclass                                                    0  0 0 0
##   bias                                                           0  0 0 0
##   biggest                                                        0  0 0 0
##   bizrate                                                        0  0 0 0
##   buyers                                                         0  0 0 0
##   capability                                                     0  0 0 0
##   careerboosting                                                 0  0 0 0
##   case                                                           0  0 0 0
##   choose                                                         0  0 0 0
##   cleansing                                                      0  0 0 0
##   collaborative                                                  0  0 0 0
##   collected                                                      0  0 0 0
##   communicating                                                  0  0 0 0
##   comprehensive                                                  0  0 0 0
##   conferences                                                    0  0 0 0
##   cons                                                           0  0 0 0
##   consumers                                                      0  0 0 0
##   continuously                                                   0  0 0 0
##   contributor                                                    0  0 0 0
##   coordinating                                                   0  0 0 0
##   core                                                           0  0 0 0
##   cover                                                          0  0 0 0
##   creed                                                          0  0 0 0
##   cross                                                          0  0 0 0
##   customerfacing                                                 0  0 0 0
##   customergenerated                                              0  0 0 0
##   cycle                                                          0  0 0 0
##   definition                                                     0  0 0 0
##   depending                                                      0  0 0 0
##   ecosystem                                                      0  0 0 0
##   ecosystems                                                     0  0 0 0
##   eeo                                                            0  0 0 0
##   effectively                                                    0  0 0 0
##   emergent                                                       0  0 0 0
##   evaluating                                                     0  0 0 0
##   excitement                                                     0  0 0 0
##   experiences                                                    0  0 0 0
##   exposed                                                        0  0 0 0
##   fun                                                            0  0 0 0
##   genetic                                                        0  0 0 0
##   gigabyte                                                       0  0 0 0
##   given                                                          0  0 0 0
##   hired                                                          0  0 0 0
##   holdout                                                        0  0 0 0
##   httpwwwuscisgoveverifyemployees                                0  0 0 0
##   hyper                                                          0  0 0 0
##   integration                                                    0  0 0 0
##   investment                                                     0  0 0 0
##   likeminded                                                     0  0 0 0
##   local                                                          0  0 0 0
##   lot                                                            0  0 0 0
##   means                                                          0  0 0 0
##   measurements                                                   0  0 0 0
##   meredith                                                       0  0 0 0
##   million                                                        0  0 0 0
##   modelsresults                                                  0  0 0 0
##   move                                                           0  0 0 0
##   needle                                                         0  0 0 0
##   ones                                                           0  0 0 0
##   overfitting                                                    0  0 0 0
##   paradigm                                                       0  0 0 0
##   parameter                                                      0  0 0 0
##   participates                                                   0  0 0 0
##   participating                                                  0  0 0 0
##   parties                                                        0  0 0 0
##   partners                                                       0  0 0 0
##   persons                                                        0  0 0 0
##   popular                                                        0  0 0 0
##   practical                                                      0  0 0 0
##   priorities                                                     0  0 0 0
##   pros                                                           0  0 0 0
##   public                                                         0  0 0 0
##   ratings                                                        0  0 0 0
##   regardless                                                     0  0 0 0
##   reimbursement                                                  0  0 0 0
##   retail                                                         0  0 0 0
##   retailers                                                      0  0 0 0
##   rmse                                                           0  0 0 0
##   rocksolid                                                      0  0 0 0
##   rpython                                                        0  0 0 0
##   selflearner                                                    0  0 0 0
##   seller                                                         0  0 0 0
##   semisupervised                                                 0  0 0 0
##   sessions                                                       0  0 0 0
##   side                                                           0  0 0 0
##   sizes                                                          0  0 0 0
##   social                                                         0  0 0 0
##   state                                                          0  0 0 0
##   supportive                                                     0  0 0 0
##   switch                                                         0  0 0 0
##   technologist                                                   0  0 0 0
##   terabytescale                                                  0  0 0 0
##   thousands                                                      0  0 0 0
##   thrive                                                         0  0 0 0
##   timeline                                                       0  0 0 0
##   toolkits                                                       0  0 0 0
##   traffic                                                        0  0 0 0
##   tuition                                                        0  0 0 0
##   validation                                                     0  0 0 0
##   verified                                                       0  0 0 0
##   versa                                                          0  0 0 0
##   vice                                                           0  0 0 0
##   xgboost                                                        0  0 0 0
##   accomplished                                                   0  0 0 0
##   advisors                                                       0  0 0 0
##   ahead                                                          0  0 0 0
##   ambition                                                       0  0 0 0
##   becoming                                                       0  0 0 0
##   boasts                                                         0  0 0 0
##   boundless                                                      0  0 0 0
##   broader                                                        0  0 0 0
##   channels                                                       0  0 0 0
##   citizen                                                        0  0 0 0
##   citizens                                                       0  0 0 0
##   comfortable                                                    0  0 0 0
##   consistencystandardization                                     0  0 0 0
##   corporate                                                      0  0 0 0
##   coveted                                                        0  0 0 0
##   define                                                         0  0 0 0
##   defining                                                       0  0 0 0
##   distribution                                                   0  0 0 0
##   domains                                                        0  0 0 0
##   dont                                                           0  0 0 0
##   earned                                                         0  0 0 0
##   elite                                                          0  0 0 0
##   entertaining                                                   0  0 0 0
##   entertainment                                                  0  0 0 0
##   entrepreneurs                                                  0  0 0 0
##   environments                                                   0  0 0 0
##   epic                                                           0  0 0 0
##   exclusive                                                      0  0 0 0
##   forest                                                         0  0 0 0
##   generouslysponsored                                            0  0 0 0
##   giants                                                         0  0 0 0
##   glmregression                                                  0  0 0 0
##   hard                                                           0  0 0 0
##   head                                                           0  0 0 0
##   hit                                                            0  0 0 0
##   hollywood                                                      0  0 0 0
##   impacting                                                      0  0 0 0
##   improvements                                                   0  0 0 0
##   individual                                                     0  0 0 0
##   investors                                                      0  0 0 0
##   know                                                           0  0 0 0
##   lasting                                                        0  0 0 0
##   lean                                                           0  0 0 0
##   lifestyle                                                      0  0 0 0
##   mastery                                                        0  0 0 0
##   microstrategy                                                  0  0 0 0
##   movies                                                         0  0 0 0
##   news                                                           0  0 0 0
##   nonsql                                                         0  0 0 0
##   open                                                           0  0 0 0
##   opposed                                                        0  0 0 0
##   particularly                                                   0  0 0 0
##   planet                                                         0  0 0 0
##   plentiful                                                      0  0 0 0
##   pluto                                                          0  0 0 0
##   powerbi                                                        0  0 0 0
##   premier                                                        0  0 0 0
##   privilege                                                      0  0 0 0
##   proactively                                                    0  0 0 0
##   profoundly                                                     0  0 0 0
##   pull                                                           0  0 0 0
##   qualities                                                      0  0 0 0
##   quest                                                          0  0 0 0
##   questioning                                                    0  0 0 0
##   random                                                         0  0 0 0
##   reach                                                          0  0 0 0
##   renowned                                                       0  0 0 0
##   revolutionize                                                  0  0 0 0
##   scoring                                                        0  0 0 0
##   seemingly                                                      0  0 0 0
##   selective                                                      0  0 0 0
##   selfstarters                                                   0  0 0 0
##   servicing                                                      0  0 0 0
##   significantly                                                  0  0 0 0
##   smartest                                                       0  0 0 0
##   speed                                                          0  0 0 0
##   stakes                                                         0  0 0 0
##   starts                                                         0  0 0 0
##   strongly                                                       0  0 0 0
##   successful                                                     0  0 0 0
##   suggesting                                                     0  0 0 0
##   supported                                                      0  0 0 0
##   television                                                     0  0 0 0
##   timely                                                         0  0 0 0
##   treat                                                          0  0 0 0
##   unstructurednonstandardized                                    0  0 0 0
##   useful                                                         0  0 0 0
##   viewers                                                        0  0 0 0
##   warp                                                           0  0 0 0
##   west                                                           0  0 0 0
##   wide                                                           0  0 0 0
##   youre                                                          0  0 0 0
##   airflow                                                        0  0 0 0
##   art                                                            0  0 0 0
##   automotive                                                     0  0 0 0
##   block                                                          0  0 0 0
##   cars                                                           0  0 0 0
##   cellphone                                                      0  0 0 0
##   commuter                                                       0  0 0 0
##   competing                                                      0  0 0 0
##   competition                                                    0  0 0 0
##   construct                                                      0  0 0 0
##   coverage                                                       0  0 0 0
##   daily                                                          0  0 0 0
##   discount                                                       0  0 0 0
##   docker                                                         0  0 0 0
##   dollar                                                         0  0 0 0
##   eagerness                                                      0  0 0 0
##   etl                                                            0  0 0 0
##   fair                                                           0  0 0 0
##   families                                                       0  0 0 0
##   features                                                       0  0 0 0
##   flask                                                          0  0 0 0
##   green                                                          0  0 0 0
##   incentives                                                     0  0 0 0
##   jupyter                                                        0  0 0 0
##   kaggle                                                         0  0 0 0
##   kubernetes                                                     0  0 0 0
##   light                                                          0  0 0 0
##   luigi                                                          0  0 0 0
##   lunch                                                          0  0 0 0
##   mentorship                                                     0  0 0 0
##   molds                                                          0  0 0 0
##   onboarding                                                     0  0 0 0
##   owners                                                         0  0 0 0
##   package                                                        0  0 0 0
##   parking                                                        0  0 0 0
##   pivotal                                                        0  0 0 0
##   play                                                           0  0 0 0
##   postgres                                                       0  0 0 0
##   rail                                                           0  0 0 0
##   realtime                                                       0  0 0 0
##   reshape                                                        0  0 0 0
##   running                                                        0  0 0 0
##   scientistmachine                                               0  0 0 0
##   shopping                                                       0  0 0 0
##   sklearn                                                        0  0 0 0
##   sqlalchemy                                                     0  0 0 0
##   superset                                                       0  0 0 0
##   treasure                                                       0  0 0 0
##   trillion                                                       0  0 0 0
##   warehousing                                                    0  0 0 0
##   workflows                                                      0  0 0 0
##   accurate                                                       0  0 0 0
##   aggregate                                                      0  0 0 0
##   applied                                                        0  0 0 0
##   appreciated                                                    0  0 0 0
##   appropriate                                                    0  0 0 0
##   athena                                                         0  0 0 0
##   author                                                         0  0 0 0
##   brands                                                         0  0 0 0
##   breaking                                                       0  0 0 0
##   broadly                                                        0  0 0 0
##   command                                                        0  0 0 0
##   competency                                                     0  0 0 0
##   components                                                     0  0 0 0
##   crossfunctionally                                              0  0 0 0
##   delivered                                                      0  0 0 0
##   establish                                                      0  0 0 0
##   established                                                    0  0 0 0
##   evaluations                                                    0  0 0 0
##   expand                                                         0  0 0 0
##   explanation                                                    0  0 0 0
##   factual                                                        0  0 0 0
##   factuals                                                       0  0 0 0
##   filter                                                         0  0 0 0
##   greatly                                                        0  0 0 0
##   guidance                                                       0  0 0 0
##   guide                                                          0  0 0 0
##   handle                                                         0  0 0 0
##   happening                                                      0  0 0 0
##   impactful                                                      0  0 0 0
##   increasing                                                     0  0 0 0
##   industryleading                                                0  0 0 0
##   influence                                                      0  0 0 0
##   intelligently                                                  0  0 0 0
##   interpret                                                      0  0 0 0
##   known                                                          0  0 0 0
##   knows                                                          0  0 0 0
##   learnings                                                      0  0 0 0
##   letters                                                        0  0 0 0
##   line                                                           0  0 0 0
##   love                                                           0  0 0 0
##   marketers                                                      0  0 0 0
##   matched                                                        0  0 0 0
##   messy                                                          0  0 0 0
##   places                                                         0  0 0 0
##   prescribe                                                      0  0 0 0
##   propose                                                        0  0 0 0
##   questions                                                      0  0 0 0
##   really                                                         0  0 0 0
##   recommended                                                    0  0 0 0
##   sell                                                           0  0 0 0
##   several                                                        0  0 0 0
##   sharing                                                        0  0 0 0
##   shell                                                          0  0 0 0
##   specifications                                                 0  0 0 0
##   structure                                                      0  0 0 0
##   teaching                                                       0  0 0 0
##   thanks                                                         0  0 0 0
##   trust                                                          0  0 0 0
##   uncertainty                                                    0  0 0 0
##   underlying                                                     0  0 0 0
##   understands                                                    0  0 0 0
##   utilities                                                      0  0 0 0
##   variance                                                       0  0 0 0
##   willingness                                                    0  0 0 0
##   wrangle                                                        0  0 0 0
##   almost                                                         0  0 0 0
##   artistic                                                       0  0 0 0
##   ashamed                                                        0  0 0 0
##   augmenting                                                     0  0 0 0
##   away                                                           0  0 0 0
##   bokeh                                                          0  0 0 0
##   buzz                                                           0  0 0 0
##   classifiers                                                    0  0 0 0
##   coming                                                         0  0 0 0
##   considering                                                    0  0 0 0
##   constantly                                                     0  0 0 0
##   creativity                                                     0  0 0 0
##   credentials                                                    0  0 0 0
##   dark                                                           0  0 0 0
##   demo                                                           0  0 0 0
##   didnt                                                          0  0 0 0
##   discussions                                                    0  0 0 0
##   don                                                            0  0 0 0
##   drama                                                          0  0 0 0
##   dry                                                            0  0 0 0
##   enjoying                                                       0  0 0 0
##   everybody                                                      0  0 0 0
##   everything                                                     0  0 0 0
##   facing                                                         0  0 0 0
##   fear                                                           0  0 0 0
##   feel                                                           0  0 0 0
##   finds                                                          0  0 0 0
##   floor                                                          0  0 0 0
##   frequent                                                       0  0 0 0
##   frequently                                                     0  0 0 0
##   generation                                                     0  0 0 0
##   github                                                         0  0 0 0
##   ground                                                         0  0 0 0
##   handful                                                        0  0 0 0
##   hidden                                                         0  0 0 0
##   hobby                                                          0  0 0 0
##   hole                                                           0  0 0 0
##   hone                                                           0  0 0 0
##   ingesting                                                      0  0 0 0
##   integrity                                                      0  0 0 0
##   knowledgegraphs                                                0  0 0 0
##   laid                                                           0  0 0 0
##   late                                                           0  0 0 0
##   likely                                                         0  0 0 0
##   linkedin                                                       0  0 0 0
##   links                                                          0  0 0 0
##   little                                                         0  0 0 0
##   matplotlib                                                     0  0 0 0
##   mildly                                                         0  0 0 0
##   modularization                                                 0  0 0 0
##   music                                                          0  0 0 0
##   near                                                           0  0 0 0
##   night                                                          0  0 0 0
##   number                                                         0  0 0 0
##   occasional                                                     0  0 0 0
##   occurrences                                                    0  0 0 0
##   politics                                                       0  0 0 0
##   portfolio                                                      0  0 0 0
##   practice                                                       0  0 0 0
##   pragmatist                                                     0  0 0 0
##   prefer                                                         0  0 0 0
##   presenting                                                     0  0 0 0
##   prevent                                                        0  0 0 0
##   purist                                                         0  0 0 0
##   rather                                                         0  0 0 0
##   reflect                                                        0  0 0 0
##   reuse                                                          0  0 0 0
##   résumé                                                         0  0 0 0
##   score                                                          0  0 0 0
##   selecting                                                      0  0 0 0
##   semantic                                                       0  0 0 0
##   serverside                                                     0  0 0 0
##   smarter                                                        0  0 0 0
##   sounds                                                         0  0 0 0
##   specializing                                                   0  0 0 0
##   spend                                                          0  0 0 0
##   stats                                                          0  0 0 0
##   still                                                          0  0 0 0
##   strive                                                         0  0 0 0
##   summarization                                                  0  0 0 0
##   thing                                                          0  0 0 0
##   thirdparty                                                     0  0 0 0
##   topic                                                          0  0 0 0
##   topics                                                         0  0 0 0
##   uncovering                                                     0  0 0 0
##   verifying                                                      0  0 0 0
##   acquisition                                                    0  0 0 0
##   adoption                                                       0  0 0 0
##   centene                                                        0  0 0 0
##   claims                                                         0  0 0 0
##   db2                                                            0  0 0 0
##   different                                                      0  0 0 0
##   distinguish                                                    0  0 0 0
##   durability                                                     0  0 0 0
##   expectations                                                   0  0 0 0
##   experiments                                                    0  0 0 0
##   exploratory                                                    0  0 0 0
##   format                                                         0  0 0 0
##   hana                                                           0  0 0 0
##   improvement                                                    0  0 0 0
##   informatics                                                    0  0 0 0
##   knowledgeexperience                                            0  0 0 0
##   liaisons                                                       0  0 0 0
##   measure                                                        0  0 0 0
##   membership                                                     0  0 0 0
##   mysql                                                          0  0 0 0
##   presentations                                                  0  0 0 0
##   provider                                                       0  0 0 0
##   recognize                                                      0  0 0 0
##   sap                                                            0  0 0 0
##   scale                                                          0  0 0 0
##   targeted                                                       0  0 0 0
##   teradata                                                       0  0 0 0
##   validate                                                       0  0 0 0
##   values                                                         0  0 0 0
##   adept                                                          0  0 0 0
##   advantagesdrawbacks                                            0  0 0 0
##   adwords                                                        0  0 0 0
##   artificial                                                     0  0 0 0
##   becseeitis                                                     0  0 0 0
##   catalyst                                                       0  0 0 0
##   coremetrics                                                    0  0 0 0
##   courses                                                        0  0 0 0
##   creatingrunning                                                0  0 0 0
##   crimson                                                        0  0 0 0
##   datacomputing                                                  0  0 0 0
##   digitalocean                                                   0  0 0 0
##   draw                                                           0  0 0 0
##   education                                                      0  0 0 0
##   framework                                                      0  0 0 0
##   gained                                                         0  0 0 0
##   ggplot                                                         0  0 0 0
##   gurobi                                                         0  0 0 0
##   hexagon                                                        0  0 0 0
##   inflight                                                       0  0 0 0
##   mine                                                           0  0 0 0
##   miningdata                                                     0  0 0 0
##   multimedia                                                     0  0 0 0
##   objects                                                        0  0 0 0
##   performance                                                    0  0 0 0
##   periscope                                                      0  0 0 0
##   primary                                                        0  0 0 0
##   providers                                                      0  0 0 0
##   scenario                                                       0  0 0 0
##   secondary                                                      0  0 0 0
##   simulations                                                    0  0 0 0
##   site                                                           0  0 0 0
##   slq                                                            0  0 0 0
##   tree                                                           0  0 0 0
##   usingcreating                                                  0  0 0 0
##   visualizingpresenting                                          0  0 0 0
##   600                                                            0  0 0 0
##   adtech                                                         0  0 0 0
##   backgrounds                                                    0  0 0 0
##   balance                                                        0  0 0 0
##   causal                                                         0  0 0 0
##   cities                                                         0  0 0 0
##   crosschannel                                                   0  0 0 0
##   demonstrable                                                   0  0 0 0
##   eaters                                                         0  0 0 0
##   forward                                                        0  0 0 0
##   grade                                                          0  0 0 0
##   growth                                                         0  0 0 0
##   hunger                                                         0  0 0 0
##   ignite                                                         0  0 0 0
##   ltv                                                            0  0 0 0
##   marketindividual                                               0  0 0 0
##   meeting                                                        0  0 0 0
##   motion                                                         0  0 0 0
##   moving                                                         0  0 0 0
##   planningprioritization                                         0  0 0 0
##   player                                                         0  0 0 0
##   prioritization                                                 0  0 0 0
##   response                                                       0  0 0 0
##   riders                                                         0  0 0 0
##   seek                                                           0  0 0 0
##   spirit                                                         0  0 0 0
##   stakeholder                                                    0  0 0 0
##   swift                                                          0  0 0 0
##   welcome                                                        0  0 0 0
##   1236                                                           0  0 0 0
##   answer                                                         0  0 0 0
##   apparel                                                        0  0 0 0
##   assortment                                                     0  0 0 0
##   backtest                                                       0  0 0 0
##   behaviors                                                      0  0 0 0
##   brand                                                          0  0 0 0
##   bright                                                         0  0 0 0
##   brightest                                                      0  0 0 0
##   colorful                                                       0  0 0 0
##   commerce                                                       0  0 0 0
##   community                                                      0  0 0 0
##   compare                                                        0  0 0 0
##   continually                                                    0  0 0 0
##   course                                                         0  0 0 0
##   curates                                                        0  0 0 0
##   currently                                                      0  0 0 0
##   customerdriven                                                 0  0 0 0
##   decor                                                          0  0 0 0
##   designers                                                      0  0 0 0
##   designs                                                        0  0 0 0
##   digitally                                                      0  0 0 0
##   drives                                                         0  0 0 0
##   dynamic                                                        0  0 0 0
##   effort                                                         0  0 0 0
##   empathy                                                        0  0 0 0
##   empower                                                        0  0 0 0
##   engagement                                                     0  0 0 0
##   engaging                                                       0  0 0 0
##   exist                                                          0  0 0 0
##   fashion                                                        0  0 0 0
##   feminine                                                       0  0 0 0
##   generated                                                      0  0 0 0
##   greatwhat                                                      0  0 0 0
##   grounded                                                       0  0 0 0
##   honesty                                                        0  0 0 0
##   hundred                                                        0  0 0 0
##   inhouse                                                        0  0 0 0
##   inside                                                         0  0 0 0
##   inspired                                                       0  0 0 0
##   inspiring                                                      0  0 0 0
##   intellectual                                                   0  0 0 0
##   intersection                                                   0  0 0 0
##   investing                                                      0  0 0 0
##   iterative                                                      0  0 0 0
##   javascript                                                     0  0 0 0
##   kind                                                           0  0 0 0
##   leverages                                                      0  0 0 0
##   leveraging                                                     0  0 0 0
##   linux                                                          0  0 0 0
##   matterwhat                                                     0  0 0 0
##   modcloth                                                       0  0 0 0
##   monthsis                                                       0  0 0 0
##   native                                                         0  0 0 0
##   note                                                           0  0 0 0
##   offline                                                        0  0 0 0
##   omnichannel                                                    0  0 0 0
##   outcomeswhy                                                    0  0 0 0
##   particular                                                     0  0 0 0
##   performances                                                   0  0 0 0
##   prints                                                         0  0 0 0
##   professional                                                   0  0 0 0
##   retaining                                                      0  0 0 0
##   sells                                                          0  0 0 0
##   sentiment                                                      0  0 0 0
##   sequence                                                       0  0 0 0
##   signature                                                      0  0 0 0
##   silhouettes                                                    0  0 0 0
##   sit                                                            0  0 0 0
##   stem                                                           0  0 0 0
##   style                                                          0  0 0 0
##   unparalleled                                                   0  0 0 0
##   upon                                                           0  0 0 0
##   version                                                        0  0 0 0
##   vintage                                                        0  0 0 0
##   wants                                                          0  0 0 0
##   warehouse                                                      0  0 0 0
##   whats                                                          0  0 0 0
##   adventure                                                      0  0 0 0
##   awaits                                                         0  0 0 0
##   bcg                                                            0  0 0 0
##   bcgdvcom                                                       0  0 0 0
##   collaborating                                                  0  0 0 0
##   cultivate                                                      0  0 0 0
##   dashboard                                                      0  0 0 0
##   demonstrate                                                    0  0 0 0
##   deployed                                                       0  0 0 0
##   evergrowing                                                    0  0 0 0
##   fast                                                           0  0 0 0
##   filtering                                                      0  0 0 0
##   flurry                                                         0  0 0 0
##   foundation                                                     0  0 0 0
##   graph                                                          0  0 0 0
##   graphing                                                       0  0 0 0
##   hadoopmapreduce                                                0  0 0 0
##   httpswwwbcgdvcom                                               0  0 0 0
##   ingestion                                                      0  0 0 0
##   interested                                                     0  0 0 0
##   interviews                                                     0  0 0 0
##   least                                                          0  0 0 0
##   listed                                                         0  0 0 0
##   mixpanel                                                       0  0 0 0
##   onpremises                                                     0  0 0 0
##   pair                                                           0  0 0 0
##   querying                                                       0  0 0 0
##   ranging                                                        0  0 0 0
##   remarkable                                                     0  0 0 0
##   restricted                                                     0  0 0 0
##   resumes                                                        0  0 0 0
##   screened                                                       0  0 0 0
##   solely                                                         0  0 0 0
##   strategic                                                      0  0 0 0
##   talks                                                          0  0 0 0
##   though                                                         0  0 0 0
##   varied                                                         0  0 0 0
##   ventures                                                       0  0 0 0
##   website                                                        0  0 0 0
##   additionally                                                   0  0 0 0
##   autonomously                                                   0  0 0 0
##   classic                                                        0  0 0 0
##   clearances                                                     0  0 0 0
##   compliment                                                     0  0 0 0
##   cores                                                          0  0 0 0
##   fpga                                                           0  0 0 0
##   matlab                                                         0  0 0 0
##   qualify                                                        0  0 0 0
##   replace                                                        0  0 0 0
##   signal                                                         0  0 0 0
##   softwaredefined                                                0  0 0 0
##   studying                                                       0  0 0 0
##   transceivers                                                   0  0 0 0
##   unixlinux                                                      0  0 0 0
##   3103365432                                                     0  0 0 0
##   accommodation                                                  0  0 0 0
##   adapt                                                          0  0 0 0
##   analytic                                                       0  0 0 0
##   ancestry                                                       0  0 0 0
##   api                                                            0  0 0 0
##   applicationsystem                                              0  0 0 0
##   assessment                                                     0  0 0 0
##   caffetensorflow                                                0  0 0 0
##   character                                                      0  0 0 0
##   childbirth                                                     0  0 0 0
##   collecting                                                     0  0 0 0
##   condition                                                      0  0 0 0
##   configuration                                                  0  0 0 0
##   consistent                                                     0  0 0 0
##   contact                                                        0  0 0 0
##   detailoriented                                                 0  0 0 0
##   disabled                                                       0  0 0 0
##   distributions                                                  0  0 0 0
##   email                                                          0  0 0 0
##   estimators                                                     0  0 0 0
##   extracurricular                                                0  0 0 0
##   featuredriven                                                  0  0 0 0
##   forests                                                        0  0 0 0
##   forwith                                                        0  0 0 0
##   fromexposing                                                   0  0 0 0
##   gpa                                                            0  0 0 0
##   ieomailboxaeroorg                                              0  0 0 0
##   imagesignal                                                    0  0 0 0
##   institution                                                    0  0 0 0
##   interdisciplinary                                              0  0 0 0
##   interest                                                       0  0 0 0
##   interfaces                                                     0  0 0 0
##   json                                                           0  0 0 0
##   keen                                                           0  0 0 0
##   knearest                                                       0  0 0 0
##   leads                                                          0  0 0 0
##   library                                                        0  0 0 0
##   lifecycles                                                     0  0 0 0
##   likelihood                                                     0  0 0 0
##   maturity                                                       0  0 0 0
##   maximum                                                        0  0 0 0
##   missioncritical                                                0  0 0 0
##   neighbors                                                      0  0 0 0
##   objectivity                                                    0  0 0 0
##   octavematlab                                                   0  0 0 0
##   opencv                                                         0  0 0 0
##   operating                                                      0  0 0 0
##   organizational                                                 0  0 0 0
##   participation                                                  0  0 0 0
##   path                                                           0  0 0 0
##   pertinent                                                      0  0 0 0
##   positions                                                      0  0 0 0
##   pregnancy                                                      0  0 0 0
##   presentation                                                   0  0 0 0
##   prevalence                                                     0  0 0 0
##   progress                                                       0  0 0 0
##   proofofconcept                                                 0  0 0 0
##   prove                                                          0  0 0 0
##   pursuing                                                       0  0 0 0
##   recognized                                                     0  0 0 0
##   resilient                                                      0  0 0 0
##   responsibility                                                 0  0 0 0
##   selected                                                       0  0 0 0
##   socially                                                       0  0 0 0
##   softwaresystem                                                 0  0 0 0
##   softwaresystems                                                0  0 0 0
##   spent                                                          0  0 0 0
##   standards                                                      0  0 0 0
##   technically                                                    0  0 0 0
##   typically                                                      0  0 0 0
##   utilization                                                    0  0 0 0
##   viability                                                      0  0 0 0
##   virtualizationcloud                                            0  0 0 0
##   xml                                                            0  0 0 0
##   advantages                                                     0  0 0 0
##   anywhere                                                       0  0 0 0
##   careersbcgdvcomlearnmore                                       0  0 0 0
##   competencies                                                   0  0 0 0
##   cutting                                                        0  0 0 0
##   edge                                                           0  0 0 0
##   horizon                                                        0  0 0 0
##   manhattan                                                      0  0 0 0
##   truly                                                          0  0 0 0
##   accenture                                                      0  0 0 0
##   acceptance                                                     0  0 0 0
##   adapting                                                       0  0 0 0
##   affiliated                                                     0  0 0 0
##   affirmative                                                    0  0 0 0
##   alternate                                                      0  0 0 0
##   approach                                                       0  0 0 0
##   architect                                                      0  0 0 0
##   arrest                                                         0  0 0 0
##   aspirant                                                       0  0 0 0
##   assesses                                                       0  0 0 0
##   assets                                                         0  0 0 0
##   assignments                                                    0  0 0 0
##   basic                                                          0  0 0 0
##   cases                                                          0  0 0 0
##   centre                                                         0  0 0 0
##   certifications                                                 0  0 0 0
##   chain                                                          0  0 0 0
##   conceptual                                                     0  0 0 0
##   conceptualize                                                  0  0 0 0
##   conducted                                                      0  0 0 0
##   considered                                                     0  0 0 0
##   contribution                                                   0  0 0 0
##   corner                                                         0  0 0 0
##   delivers                                                       0  0 0 0
##   determine                                                      0  0 0 0
##   disclose                                                       0  0 0 0
##   eligible                                                       0  0 0 0
##   employed                                                       0  0 0 0
##   enhancing                                                      0  0 0 0
##   executive                                                      0  0 0 0
##   expunged                                                       0  0 0 0
##   factors                                                        0  0 0 0
##   femalesminoritiesveteransindividuals                           0  0 0 0
##   firsttomarket                                                  0  0 0 0
##   flink                                                          0  0 0 0
##   follows                                                        0  0 0 0
##   fulfilment                                                     0  0 0 0
##   fundamental                                                    0  0 0 0
##   fuzzy                                                          0  0 0 0
##   globe                                                          0  0 0 0
##   handling                                                       0  0 0 0
##   human                                                          0  0 0 0
##   identifies                                                     0  0 0 0
##   indicators                                                     0  0 0 0
##   industrialorganizational                                       0  0 0 0
##   interacts                                                      0  0 0 0
##   intermediate                                                   0  0 0 0
##   iot                                                            0  0 0 0
##   julia                                                          0  0 0 0
##   labs                                                           0  0 0 0
##   logic                                                          0  0 0 0
##   machinelearning                                                0  0 0 0
##   mark                                                           0  0 0 0
##   markov                                                         0  0 0 0
##   matters                                                        0  0 0 0
##   men                                                            0  0 0 0
##   mobility                                                       0  0 0 0
##   nonparametric                                                  0  0 0 0
##   obligated                                                      0  0 0 0
##   outcome                                                        0  0 0 0
##   pivot                                                          0  0 0 0
##   projectbased                                                   0  0 0 0
##   records                                                        0  0 0 0
##   redefine                                                       0  0 0 0
##   reliability                                                    0  0 0 0
##   robotics                                                       0  0 0 0
##   scheduling                                                     0  0 0 0
##   sealed                                                         0  0 0 0
##   shall                                                          0  0 0 0
##   situations                                                     0  0 0 0
##   sized                                                          0  0 0 0
##   solves                                                         0  0 0 0
##   source                                                         0  0 0 0
##   stochastic                                                     0  0 0 0
##   supply                                                         0  0 0 0
##   term                                                           0  0 0 0
##   variable                                                       0  0 0 0
##   versed                                                         0  0 0 0
##   women                                                          0  0 0 0
##   01162019                                                       0  0 0 0
##   aaid                                                           0  0 0 0
##   analyticsleading                                               0  0 0 0
##   anomaly                                                        0  0 0 0
##   architecting                                                   0  0 0 0
##   arima                                                          0  0 0 0
##   arma                                                           0  0 0 0
##   articulating                                                   0  0 0 0
##   assessments                                                    0  0 0 0
##   carlo                                                          0  0 0 0
##   categorical                                                    0  0 0 0
##   categorize                                                     0  0 0 0
##   civil                                                          0  0 0 0
##   collect                                                        0  0 0 0
##   comprised                                                      0  0 0 0
##   conference                                                     0  0 0 0
##   consistently                                                   0  0 0 0
##   correlation                                                    0  0 0 0
##   crossdomain                                                    0  0 0 0
##   crossprogram                                                   0  0 0 0
##   dimension                                                      0  0 0 0
##   dod                                                            0  0 0 0
##   eight                                                          0  0 0 0
##   emphasis                                                       0  0 0 0
##   engrg                                                          0  0 0 0
##   followup                                                       0  0 0 0
##   forming                                                        0  0 0 0
##   frontend                                                       0  0 0 0
##   implications                                                   0  0 0 0
##   issue                                                          0  0 0 0
##   languagedevelopment                                            0  0 0 0
##   monte                                                          0  0 0 0
##   multidisciplinary                                              0  0 0 0
##   narx                                                           0  0 0 0
##   papersarticles                                                 0  0 0 0
##   preference                                                     0  0 0 0
##   programmatic                                                   0  0 0 0
##   published                                                      0  0 0 0
##   reduction                                                      0  0 0 0
##   relate                                                         0  0 0 0
##   resulting                                                      0  0 0 0
##   risk                                                           0  0 0 0
##   sci                                                            0  0 0 0
##   scipy                                                          0  0 0 0
##   significant                                                    0  0 0 0
##   specialists                                                    0  0 0 0
##   steward                                                        0  0 0 0
##   summarize                                                      0  0 0 0
##   tailoring                                                      0  0 0 0
##   threats                                                        0  0 0 0
##   toolset                                                        0  0 0 0
##   twelve                                                         0  0 0 0
##   vehicle                                                        0  0 0 0
##   adobe                                                          0  0 0 0
##   affinities                                                     0  0 0 0
##   asks                                                           0  0 0 0
##   audience                                                       0  0 0 0
##   audiences                                                      0  0 0 0
##   bigpicture                                                     0  0 0 0
##   bluekai                                                        0  0 0 0
##   bottom                                                         0  0 0 0
##   businesssavvy                                                  0  0 0 0
##   collaboratively                                                0  0 0 0
##   confidently                                                    0  0 0 0
##   conscientious                                                  0  0 0 0
##   controlled                                                     0  0 0 0
##   depth                                                          0  0 0 0
##   disney                                                         0  0 0 0
##   distill                                                        0  0 0 0
##   dmp                                                            0  0 0 0
##   dmps                                                           0  0 0 0
##   dtci                                                           0  0 0 0
##   examining                                                      0  0 0 0
##   handsonexecution                                               0  0 0 0
##   hivehadoopcloud                                                0  0 0 0
##   hypotheses                                                     0  0 0 0
##   intellectually                                                 0  0 0 0
##   international                                                  0  0 0 0
##   lookalike                                                      0  0 0 0
##   mathstatistics                                                 0  0 0 0
##   mba                                                            0  0 0 0
##   measurable                                                     0  0 0 0
##   monetization                                                   0  0 0 0
##   multichannel                                                   0  0 0 0
##                                                                 Docs
## Terms                                                            5  6 7  8
##   125m                                                           0  0 0  0
##   401k                                                           0  0 0  0
##   900b                                                           0  0 0  0
##   able                                                           0  1 0  0
##   activities                                                     0  0 0  2
##   alerts                                                         0  0 0  0
##   allow                                                          0  0 0  0
##   also                                                           0  3 1  0
##   analysis                                                       0  1 0  1
##   anova                                                          0  0 0  0
##   app                                                            0  0 0  0
##   apple                                                          0  0 0  0
##   applying                                                       0  0 1  0
##   area                                                           0  0 0  0
##   ask                                                            0  1 0  0
##   assembled                                                      0  0 0  0
##   auc                                                            0  0 0  0
##   automate                                                       0  0 0  0
##   automation                                                     0  0 0  0
##   background                                                     0  1 0  0
##   base                                                           0  0 0  0
##   become                                                         0  0 0  0
##   benefits                                                       0  0 0  0
##   boldly                                                         0  0 0  0
##   brookfield                                                     0  0 0  0
##   building                                                       0  0 2  1
##   business                                                       0  0 2  8
##   calculate                                                      0  0 0  0
##   can                                                            0  8 0  1
##   candidate                                                      0  3 1  0
##   canonical                                                      0  0 0  0
##   capacity                                                       0  0 0  0
##   capital                                                        0  0 0  0
##   challenge                                                      0  0 0  0
##   changes                                                        0  0 0  0
##   chung                                                          0  0 0  0
##   cleaning                                                       0  1 0  0
##   code                                                           0  0 0  1
##   coding                                                         0  1 0  0
##   commands                                                       0  0 0  0
##   communicate                                                    0  0 0  0
##   communicator                                                   0  0 0  0
##   companies                                                      0  0 0  0
##   company                                                        0  1 0  1
##   compelling                                                     0  0 0  0
##   competitive                                                    0  0 0  0
##   completing                                                     0  0 0  0
##   concepts                                                       0  2 0  0
##   connect                                                        0  0 0  0
##   contribute                                                     0  0 0  0
##   country                                                        0  0 0  0
##   create                                                         0  2 0  3
##   creating                                                       0  0 0  0
##   criteria                                                       0  0 0  0
##   curiosity                                                      0  0 0  0
##   data                                                           0  7 6 11
##   dataset                                                        0  0 0  0
##   deep                                                           0  0 1  0
##   delivering                                                     0  0 0  0
##   dental                                                         0  0 0  0
##   designed                                                       0  0 0  0
##   differences                                                    0  0 0  0
##   digitizing                                                     0  0 0  0
##   doesnt                                                         0  0 0  0
##   domain                                                         0  0 0  0
##   done                                                           0  0 0  0
##   drayage                                                        0  0 0  0
##   drive                                                          0  0 0  0
##   driven                                                         0  0 0  0
##   drivers                                                        0  0 0  0
##   dynamics                                                       0  0 0  0
##   easy                                                           0  0 0  0
##   efficiencies                                                   0  0 0  0
##   elton                                                          0  0 0  0
##   end                                                            0  0 0  0
##   engage                                                         0  0 0  0
##   entire                                                         0  0 0  0
##   equity                                                         0  0 0  0
##   evidence                                                       0  0 0  0
##   exact                                                          0  0 0  0
##   examples                                                       0  0 0  0
##   execute                                                        0  0 0  0
##   experience                                                     2 10 3  3
##   explain                                                        0  0 0  0
##   feature                                                        0  0 0  0
##   find                                                           0  1 1  0
##   finding                                                        0  0 0  0
##   first                                                          0  0 0  0
##   fleet                                                          0  0 0  0
##   follow                                                         0  0 0  0
##   founded                                                        0  0 0  0
##   freight                                                        0  0 0  0
##   full                                                           0  1 0  0
##   functions                                                      0  1 0  0
##   general                                                        0  0 0  0
##   generalize                                                     0  0 0  0
##   gofundme                                                       0  0 0  0
##   google                                                         0  1 1  0
##   great                                                          0  0 0  0
##   guidelines                                                     0  0 0  0
##   happiest                                                       0  0 0  0
##   harness                                                        0  0 0  0
##   haves                                                          0  0 0  0
##   higher                                                         0  0 0  0
##   holidays                                                       0  0 0  0
##   hope                                                           0  0 0  0
##   hygiene                                                        0  0 0  0
##   idealab                                                        0  0 0  0
##   identify                                                       0  0 0  0
##   identifying                                                    0  0 0  0
##   includes                                                       0  1 0  0
##   including                                                      0  2 0  0
##   increased                                                      0  0 0  0
##   industry                                                       0  0 1  0
##   initial                                                        0  0 0  0
##   instantly                                                      0  0 0  0
##   interpretable                                                  0  0 0  0
##   intuitive                                                      0  0 0  1
##   issues                                                         0  0 0  0
##   kareo                                                          0  0 0  0
##   knowledgeable                                                  0  0 0  0
##   kpis                                                           0  0 0  0
##   language                                                       0  2 0  0
##   largest                                                        0  0 0  1
##   learn                                                          0  0 0  1
##   learning                                                       1  7 4  1
##   led                                                            0  0 0  0
##   level                                                          0  0 0  0
##   leverage                                                       0  0 0  0
##   lidia                                                          0  0 0  0
##   like                                                           0  0 0  0
##   load                                                           0  0 0  0
##   loads                                                          0  0 0  0
##   logistics                                                      0  0 0  0
##   looking                                                        0  4 1  0
##   machine                                                        1  4 4  1
##   maintainable                                                   0  0 0  0
##   make                                                           0  0 0  0
##   marketplace                                                    0  0 0  0
##   match                                                          0  0 0  0
##   matching                                                       0  0 0  0
##   meaningful                                                     0  0 0  0
##   measured                                                       0  0 0  0
##   medical                                                        0  0 0  0
##   metrics                                                        0  0 0  0
##   mission                                                        0  2 0  0
##   mobile                                                         0  0 0  0
##   model                                                          0  0 0  0
##   models                                                         0  0 1  2
##   movement                                                       0  0 0  0
##   need                                                           0  2 0  1
##   next                                                           0  0 0  0
##   nice                                                           0  0 0  0
##   ondemand                                                       0  0 0  0
##   one                                                            0  2 0  2
##   opportunities                                                  0  0 0  3
##   optimization                                                   0  0 0  0
##   otherwise                                                      0  0 0  0
##   outcomes                                                       0  0 0  0
##   overall                                                        0  0 0  1
##   packages                                                       0  0 0  0
##   people                                                         0  1 0  0
##   person                                                         0  1 0  0
##   pipelineperform                                                0  0 0  0
##   pipelines                                                      0  0 0  0
##   platform                                                       0  0 0  0
##   point                                                          0  0 0  0
##   potential                                                      0  0 0  1
##   power                                                          0  0 0  0
##   powers                                                         0  0 0  0
##   precisionrecall                                                0  0 0  0
##   previously                                                     0  0 0  0
##   process                                                        0  0 0  0
##   processing                                                     1  0 0  0
##   product                                                        0  0 0  0
##   prototype                                                      0  0 0  0
##   provide                                                        0  1 0  0
##   python                                                         0  3 2  2
##   pythonr                                                        0  0 0  0
##   raised                                                         0  0 0  0
##   rate                                                           0  0 0  0
##   real                                                           0  0 0  0
##   relationships                                                  0  0 0  0
##   reporting                                                      0  0 0  0
##   reproducible                                                   0  0 0  0
##   resolve                                                        0  0 0  0
##   rigorous                                                       0  0 0  0
##   robinson                                                       0  0 0  0
##   salary                                                         0  0 0  0
##   sales                                                          0  0 0  0
##   sample                                                         0  0 0  0
##   science                                                        1  6 2  2
##   sequoia                                                        0  0 0  0
##   setting                                                        0  0 0  0
##   shippers                                                       0  0 0  0
##   shipping                                                       0  1 0  0
##   shows                                                          0  0 0  0
##   simple                                                         0  0 0  0
##   size                                                           0  0 0  0
##   someone                                                        0  0 0  1
##   specifically                                                   0  0 0  0
##   splits                                                         0  0 0  0
##   sql                                                            0  0 0  1
##   startup                                                        0  0 0  0
##   statistical                                                    0  0 0  0
##   strategies                                                     0  0 0  0
##   success                                                        0  1 0  1
##   systems                                                        0  2 2  1
##   tables                                                         0  0 0  0
##   taking                                                         0  0 0  0
##   taught                                                         0  0 0  0
##   team                                                           0  5 1  1
##   teams                                                          0  0 0  1
##   tech                                                           0  0 0  0
##   technology                                                     0  1 0  1
##   tests                                                          0  0 0  0
##   throughout                                                     0  0 0  0
##   time                                                           0  1 0  1
##   tooling                                                        0  0 0  0
##   toolsets                                                       0  0 0  0
##   tracking                                                       0  0 0  0
##   training                                                       0  0 0  0
##   traintest                                                      0  0 0  0
##   transformations                                                0  0 0  0
##   transforming                                                   0  0 0  1
##   transparency                                                   0  1 0  0
##   truckercentric                                                 0  0 0  0
##   truckers                                                       0  0 0  0
##   trucking                                                       0  0 0  0
##   trusting                                                       0  0 0  0
##   ttest                                                          0  0 0  0
##   understanding                                                  0  0 1  0
##   unix                                                           0  0 0  0
##   updates                                                        0  0 1  0
##   use                                                            0  1 0  0
##   utility                                                        0  0 0  0
##   vacation                                                       0  0 0  0
##   venture                                                        0  0 0  0
##   venturebacked                                                  0  0 0  0
##   virtual                                                        0  0 0  0
##   vision                                                         0  0 0  0
##   visualizations                                                 0  0 0  2
##   way                                                            0  0 0  0
##   web                                                            0  0 0  0
##   whatever                                                       0  0 0  0
##   within                                                         0  0 0  1
##   words                                                          0  0 0  0
##   work                                                           0  7 0  3
##   worked                                                         0  0 0  0
##   works                                                          0  0 0  0
##   yan                                                            0  0 0  0
##   years                                                          0  3 1  2
##   360b                                                           0  0 0  0
##   algorithms                                                     0  2 0  0
##   analytics                                                      0  0 0  3
##   andor                                                          0  0 1  1
##   bachelor                                                       0  0 0  0
##   basis                                                          0  1 0  0
##   behavior                                                       0  0 0  0
##   believe                                                        0  1 0  0
##   big                                                            1  0 1  1
##   builds                                                         0  0 0  0
##   chance                                                         0  0 0  0
##   channel                                                        0  0 0  0
##   cloud                                                          0  0 0  0
##   committed                                                      0  0 0  1
##   comparable                                                     0  0 0  0
##   complex                                                        0  2 0  1
##   computation                                                    0  0 0  0
##   content                                                        0  0 0  0
##   conversion                                                     0  0 0  0
##   critical                                                       0  1 1  0
##   customer                                                       0  1 0  0
##   database                                                       0  1 0  0
##   decided                                                        0  0 0  0
##   decisions                                                      0  0 0  0
##   degree                                                         1  3 0  2
##   deliver                                                        0  0 0  0
##   design                                                         0  2 0  0
##   discovery                                                      0  0 0  0
##   distributed                                                    0  0 0  0
##   diversity                                                      0  0 0  0
##   downtown                                                       0  0 0  0
##   editorial                                                      0  0 0  0
##   editors                                                        0  0 0  0
##   employees                                                      0  0 0  0
##   employer                                                       0  1 0  0
##   employment                                                     0  3 0  0
##   engine                                                         0  0 0  0
##   environment                                                    0  1 0  0
##   equal                                                          0  3 0  0
##   field                                                          0  1 0  0
##   forms                                                          0  0 0  0
##   fox                                                            0  0 0  0
##   good                                                           0  0 0  0
##   hadoop                                                         0  0 0  0
##   hbase                                                          0  0 0  0
##   hdfs                                                           0  0 0  0
##   helps                                                          0  0 0  0
##   hiring                                                         0  0 0  0
##   hive                                                           0  0 0  0
##   hyperintelligent                                               0  0 0  0
##   implement                                                      0  0 0  0
##   inclusive                                                      0  0 0  0
##   increase                                                       0  0 0  0
##   informed                                                       0  0 0  0
##   initiatives                                                    0  0 0  0
##   innovating                                                     0  0 0  0
##   innovative                                                     0  0 0  0
##   interesting                                                    0  0 0  0
##   internet                                                       0  0 0  0
##   javascala                                                      0  0 0  0
##   job                                                            0  2 2  0
##   join                                                           0  2 0  0
##   kafka                                                          0  0 0  0
##   largescale                                                     0  0 0  0
##   leading                                                        0  1 0  0
##   loaded                                                         0  0 0  0
##   log                                                            0  0 0  0
##   maintain                                                       0  2 0  0
##   mapreduce                                                      0  0 0  0
##   massive                                                        0  0 0  0
##   merit                                                          0  0 0  0
##   month                                                          0  0 0  0
##   nbc                                                            0  0 0  0
##   newsroom                                                       0  0 0  0
##   nosql                                                          0  0 0  0
##   online                                                         0  0 0  0
##   opportunity                                                    0  3 0  0
##   personalization                                                0  0 0  0
##   petabyte                                                       0  0 0  0
##   pig                                                            0  0 0  0
##   plus                                                           1  0 1  0
##   populate                                                       0  0 0  0
##   powered                                                        0  0 0  0
##   prediction                                                     0  0 0  0
##   predictive                                                     0  0 0  1
##   preferably                                                     0  0 0  0
##   production                                                     0  0 2  0
##   products                                                       0  0 1  0
##   programming                                                    0  3 0  1
##   publisher                                                      0  0 0  0
##   qualifications                                                 0  1 0  0
##   quantitative                                                   0  0 0  0
##   query                                                          0  0 0  0
##   reached                                                        0  0 0  0
##   read                                                           0  0 0  0
##   readership                                                     0  0 0  0
##   recommendation                                                 0  0 0  0
##   recommendations                                                0  0 0  1
##   related                                                        1  0 0  1
##   requirements                                                   0  0 1  0
##   robust                                                         0  1 0  0
##   scaling                                                        0  0 0  0
##   scientist                                                      0  0 0  0
##   senior                                                         0  0 0  0
##   serving                                                        0  0 0  0
##   set                                                            0  0 0  0
##   sites                                                          0  0 0  0
##   solutions                                                      0  3 0  1
##   something                                                      0  0 0  0
##   spark                                                          0  0 0  0
##   specialinterest                                                0  0 0  0
##   sports                                                         0  0 0  0
##   stack                                                          0  0 0  0
##   statisticsbased                                                0  0 0  0
##   storage                                                        0  0 0  0
##   streaming                                                      0  0 0  0
##   support                                                        0  1 0  0
##   taboola                                                        0  0 0  0
##   targeting                                                      0  0 0  0
##   theres                                                         0  0 0  0
##   today                                                          0  0 0  0
##   tool                                                           0  0 0  0
##   transformation                                                 0  0 0  1
##   tribune                                                        0  0 0  0
##   unique                                                         0  2 0  0
##   usa                                                            0  0 0  0
##   users                                                          0  0 0  0
##   value                                                          0  0 0  2
##   visitors                                                       0  0 0  0
##   weather                                                        0  0 0  0
##   webs                                                           0  0 0  0
##   world                                                          0  2 0  1
##   worlds                                                         0  0 0  0
##   writers                                                        0  0 0  0
##   128                                                            0  0 0  0
##   144                                                            0  0 0  0
##   200000                                                         0  0 0  0
##   2017                                                           0  0 0  0
##   50year                                                         0  0 0  0
##   accommodations                                                 0  0 0  0
##   acquire                                                        0  0 0  0
##   across                                                         0  0 0  0
##   address                                                        0  0 0  0
##   adherence                                                      0  0 0  0
##   advanced                                                       0  1 0  1
##   age                                                            0  0 0  0
##   agile                                                          0  1 0  0
##   ambitions                                                      0  0 0  0
##   analysts                                                       0  0 0  0
##   analyticscientific                                             0  0 0  0
##   applicant                                                      0  0 0  0
##   applicants                                                     0  1 0  0
##   application                                                    0  0 1  0
##   applications                                                   0  0 0  1
##   apps                                                           0  0 0  0
##   architects                                                     0  0 0  0
##   architecture                                                   0  0 0  1
##   array                                                          0  0 0  0
##   assign                                                         0  0 0  0
##   attempt                                                        0  1 0  0
##   authorization                                                  0  0 0  0
##   available                                                      0  1 0  0
##   average                                                        0  0 0  0
##   billion                                                        0  0 0  0
##   breadth                                                        0  0 0  0
##   bug                                                            0  0 0  0
##   candidates                                                     0  0 0  0
##   capabilities                                                   0  1 0  0
##   capgemini                                                      0  0 0  0
##   changing                                                       0  0 0  0
##   characteristic                                                 0  0 0  0
##   click                                                          0  0 0  0
##   clients                                                        0  0 0  3
##   collaborate                                                    0  0 0  0
##   comes                                                          0  0 0  1
##   computer                                                       1  2 1  2
##   consider                                                       0  0 0  0
##   consideration                                                  0  2 0  0
##   consulting                                                     0  0 0  1
##   contemporary                                                   0  0 0  0
##   conviction                                                     0  0 0  0
##   coordinate                                                     0  0 0  0
##   count                                                          0  0 0  0
##   countries                                                      0  0 0  0
##   curation                                                       0  0 0  0
##   customize                                                      0  0 0  0
##   datasets                                                       1  0 0  1
##   delivery                                                       0  0 0  0
##   demands                                                        0  0 0  0
##   deploy                                                         0  0 0  0
##   deployment                                                     0  0 0  0
##   description                                                    0  0 0  1
##   designing                                                      0  0 0  0
##   develop                                                        0  0 0  1
##   developer                                                      0  1 0  0
##   developing                                                     0  1 0  0
##   development                                                    0  3 0  0
##   digital                                                        0  0 0  2
##   disabilities                                                   0  0 0  0
##   disability                                                     0  1 0  0
##   disseminate                                                    0  0 0  0
##   documentation                                                  0  0 0  0
##   documenting                                                    0  0 0  0
##   duties                                                         0  0 0  0
##   enable                                                         0  0 0  0
##   enables                                                        0  0 0  0
##   encouraging                                                    0  0 0  0
##   engineering                                                    1  8 0  2
##   enhance                                                        0  0 0  0
##   ensuring                                                       0  1 0  0
##   environmental                                                  0  0 0  0
##   eur                                                            0  0 0  0
##   evolving                                                       0  1 0  0
##   experienced                                                    0  1 0  0
##   expert                                                         0  0 0  2
##   expertise                                                      0  1 0  0
##   feedback                                                       0  0 0  0
##   fixing                                                         0  0 0  0
##   flexible                                                       0  0 0  0
##   following                                                      0  2 0  0
##   forefront                                                      0  0 0  0
##   frameworks                                                     0  0 0  0
##   function                                                       0  0 0  0
##   functional                                                     0  0 0  0
##   future                                                         0  0 0  0
##   gathering                                                      0  0 0  0
##   gender                                                         0  2 0  0
##   genetics                                                       0  0 0  0
##   global                                                         0  0 0  0
##   group                                                          0  3 0  0
##   guiding                                                        0  0 0  0
##   hardship                                                       0  0 0  0
##   help                                                           0  0 0  0
##   heritage                                                       0  0 0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw 0  0 0  0
##   identityexpression                                             0  0 0  0
##   implementing                                                   0  2 1  0
##   include                                                        0  0 0  0
##   individuals                                                    0  0 0  0
##   industryspecific                                               0  0 0  0
##   inform                                                         0  0 0  0
##   information                                                    0  1 0  1
##   innovation                                                     0  0 0  0
##   intended                                                       0  0 0  0
##   interpreting                                                   0  0 0  0
##   involve                                                        0  0 0  1
##   java                                                           0  0 0  0
##   junior                                                         0  0 0  0
##   knowledge                                                      0  4 1  3
##   landscape                                                      0  0 0  0
##   languages                                                      1  3 0  0
##   large                                                          1  0 0  1
##   law                                                            0  2 0  0
##   leader                                                         0  1 0  0
##   leadership                                                     0  0 0  0
##   lifecycle                                                      0  0 0  0
##   limited                                                        0  0 0  0
##   link                                                           0  0 0  0
##   manage                                                         0  0 0  0
##   management                                                     0  0 0  1
##   manipulation                                                   0  0 0  0
##   manner                                                         0  0 0  0
##   manufacturers                                                  0  0 0  0
##   marital                                                        0  0 0  0
##   matter                                                         0  0 0  0
##   may                                                            0  1 0  0
##   meetings                                                       0  0 0  0
##   members                                                        0  0 0  0
##   mental                                                         0  0 0  0
##   mentor                                                         0  0 0  0
##   mentoring                                                      0  0 0  0
##   methods                                                        0  1 0  0
##   might                                                          0  0 0  0
##   min                                                            0  0 0  0
##   monitoring                                                     0  0 0  0
##   multicultural                                                  0  0 0  0
##   must                                                           0  0 0  0
##   national                                                       0  6 0  0
##   necessary                                                      0  0 0  0
##   new                                                            0  0 0  1
##   now                                                            0  0 0  0
##   operations                                                     0  0 0  0
##   organizations                                                  0  0 0  1
##   orientation                                                    0  1 0  0
##   origin                                                         0  1 0  0
##   performed                                                      0  0 0  0
##   personnel                                                      0  0 0  0
##   physical                                                       0  0 0  0
##   platforms                                                      0  0 0  0
##   policies                                                       0  0 0  0
##   pose                                                           0  0 0  0
##   position                                                       0  3 0  2
##   prioritizing                                                   0  0 0  0
##   processes                                                      0  0 0  0
##   proficiency                                                    0  0 0  0
##   proficient                                                     0  0 1  0
##   program                                                        0  0 0  0
##   programmers                                                    0  0 0  0
##   programs                                                       0  2 0  0
##   project                                                        0  0 0  0
##   projectprogram                                                 0  0 0  0
##   projects                                                       0  4 1  0
##   protected                                                      0  1 0  0
##   provided                                                       0  1 0  0
##   qualified                                                      0  1 0  0
##   queuing                                                        0  0 0  0
##   race                                                           0  1 0  0
##   rawinterim                                                     0  0 0  0
##   realize                                                        0  0 0  0
##   reasonable                                                     0  0 0  0
##   receive                                                        0  1 1  0
##   referenced                                                     0  0 0  0
##   regard                                                         0  0 0  0
##   release                                                        0  0 0  0
##   relevant                                                       0  0 0  0
##   religion                                                       0  1 0  0
##   reported                                                       0  0 0  0
##   represent                                                      0  0 0  0
##   requests                                                       0  0 0  0
##   require                                                        0  0 0  0
##   required                                                       0  5 3  0
##   requirement                                                    0  2 0  0
##   responsibilities                                               0  1 0  1
##   responsible                                                    0  0 0  1
##   results                                                        0  0 0  0
##   revenues                                                       0  0 0  0
##   review                                                         0  1 0  0
##   reviewing                                                      0  0 0  0
##   reviews                                                        0  0 0  0
##   rights                                                         0  0 0  0
##   role                                                           0  1 1  0
##   rshiny                                                         0  0 0  0
##   scala                                                          0  0 0  0
##   sensory                                                        0  0 0  0
##   services                                                       0  1 0  1
##   sets                                                           0  0 0  0
##   sexual                                                         0  1 0  0
##   shiny                                                          0  0 0  0
##   skills                                                         0  2 1  3
##   software                                                       0  2 0  0
##   solution                                                       0  0 0  0
##   sponsor                                                        0  0 0  0
##   sponsorship                                                    0  0 0  0
##   status                                                         0  2 0  0
##   strategy                                                       0  0 0  2
##   strong                                                         0  2 1  0
##   supervise                                                      0  0 0  0
##   technical                                                      0  6 0  0
##   techniques                                                     0  1 0  0
##   testing                                                        0  0 0  0
##   tools                                                          0  0 1  0
##   traditionally                                                  0  0 0  0
##   train                                                          0  0 0  0
##   undue                                                          0  0 0  0
##   usd                                                            0  0 0  0
##   user                                                           0  0 0  0
##   valid                                                          0  0 0  0
##   various                                                        0  0 0  1
##   varying                                                        0  0 0  0
##   veteran                                                        0  1 0  0
##   visa                                                           0  0 0  0
##   visit                                                          0  0 0  0
##   visualize                                                      0  0 0  0
##   whenever                                                       0  0 0  0
##   willing                                                        0  0 0  0
##   without                                                        0  0 0  0
##   workplace                                                      0  0 0  0
##   written                                                        0  2 0  0
##   wwwcapgeminicom                                                0  0 0  0
##   ability                                                        1  2 0  0
##   advertising                                                    0  0 0  0
##   always                                                         0  0 0  0
##   analyst                                                        0  0 0  0
##   analytical                                                     0  0 1  1
##   analyze                                                        0  0 0  0
##   arise                                                          0  0 0  0
##   attention                                                      0  0 0  0
##   attribution                                                    0  0 0  0
##   best                                                           0  0 1  0
##   better                                                         0  0 0  0
##   blended                                                        0  0 0  0
##   campaigns                                                      0  0 0  0
##   client                                                         0  0 0  1
##   combined                                                       0  0 0  0
##   creative                                                       0  0 0  1
##   crossfunctional                                                0  0 0  0
##   cuttingedge                                                    0  0 1  0
##   dataminer                                                      0  0 0  0
##   dedication                                                     0  0 0  0
##   desire                                                         0  0 0  0
##   detail                                                         0  0 0  0
##   developers                                                     0  0 0  0
##   direct                                                         0  0 0  0
##   efficiency                                                     0  0 0  0
##   excel                                                          0  0 0  0
##   exceptional                                                    0  0 0  0
##   execution                                                      0  0 0  0
##   external                                                       0  0 0  0
##   findings                                                       0  0 0  0
##   gurudata                                                       0  0 0  0
##   healthy                                                        0  0 0  0
##   hoc                                                            0  0 0  0
##   important                                                      0  0 0  0
##   improve                                                        0  0 0  0
##   innovator                                                      0  0 0  0
##   integral                                                       0  0 0  0
##   intelligence                                                   0  0 0  1
##   intermedia                                                     0  0 0  0
##   internal                                                       0  1 0  0
##   investments                                                    0  0 0  0
##   manager                                                        0  0 0  0
##   market                                                         0  1 0  0
##   marketing                                                      0  0 0  0
##   master                                                         0  0 0  0
##   media                                                          0  0 0  0
##   microsoft                                                      0  0 1  0
##   multitask                                                      0  0 0  0
##   operational                                                    0  0 0  0
##   order                                                          0  0 0  0
##   part                                                           0  1 0  1
##   past                                                           0  0 0  0
##   patterns                                                       0  1 0  0
##   practices                                                      0  0 0  0
##   previous                                                       0  0 0  0
##   prime                                                          0  0 0  0
##   prioritize                                                     0  0 0  0
##   problem                                                        0  3 0  0
##   procedures                                                     0  0 0  0
##   produce                                                        0  0 0  0
##   professionally                                                 0  0 0  0
##   promote                                                        0  0 0  0
##   proprietary                                                    0  0 0  0
##   provides                                                       0  0 0  0
##   qlikview                                                       0  0 0  1
##   queries                                                        0  0 0  0
##   reliably                                                       0  0 0  0
##   reports                                                        0  0 0  1
##   research                                                       0  3 1  0
##   resources                                                      0  0 0  0
##   resultsoriented                                                0  0 0  0
##   return                                                         0  0 0  0
##   revenue                                                        0  0 0  0
##   scientistvisualization                                         0  0 0  0
##   seeking                                                        0  0 0  0
##   service                                                        0  0 0  0
##   solving                                                        0  3 0  0
##   special                                                        0  0 0  0
##   standard                                                       0  0 0  0
##   stored                                                         0  0 0  0
##   tableau                                                        0  0 0  0
##   technologies                                                   0  0 0  0
##   thinking                                                       0  0 1  0
##   thorough                                                       0  0 0  0
##   top                                                            0  1 0  0
##   traditional                                                    0  1 0  0
##   trends                                                         0  1 0  0
##   understand                                                     0  0 0  1
##   vital                                                          0  0 0  0
##   writing                                                        0  0 0  1
##   applicable                                                     1  0 0  0
##   clearly                                                        1  0 0  0
##   defined                                                        1  0 0  0
##   electrical                                                     1  0 0  0
##   fields                                                         1  1 0  0
##   fluent                                                         1  0 0  0
##   graduate                                                       1  0 0  0
##   insight                                                        1  0 1  0
##   problems                                                       1  4 0  0
##   pulling                                                        1  0 0  0
##   scope                                                          1  0 0  0
##   solve                                                          1  2 0  0
##   undergraduate                                                  1  0 0  0
##   1960                                                           0  1 0  0
##   access                                                         0  2 0  0
##   accredited                                                     0  3 0  0
##   achievable                                                     0  1 0  0
##   action                                                         0  1 0  0
##   active                                                         0  4 0  0
##   actively                                                       0  1 0  0
##   additional                                                     0  1 0  0
##   adversarial                                                    0  1 0  0
##   advisory                                                       0  1 0  0
##   aerospace                                                      0  5 0  0
##   afraid                                                         0  1 0  0
##   air                                                            0  1 0  0
##   algorithm                                                      0  1 0  0
##   among                                                          0  1 0  0
##   angeles                                                        0  1 0  0
##   anomalies                                                      0  1 0  0
##   apply                                                          0  1 0  0
##   architectures                                                  0  1 0  0
##   areas                                                          0  1 0  0
##   aspiration                                                     0  1 0  0
##   asset                                                          0  1 0  0
##   attack                                                         0  1 0  0
##   attacks                                                        0  1 0  0
##   bachelors                                                      0  2 0  0
##   beyond                                                         0  1 0  0
##   bigger                                                         0  1 0  0
##   bus                                                            0  1 0  0
##   career                                                         0  1 0  2
##   center                                                         0  1 0  1
##   challenges                                                     0  2 0  1
##   chosen                                                         0  1 0  0
##   citizenship                                                    0  2 0  0
##   clandestine                                                    0  1 0  0
##   classification                                                 0  3 0  0
##   classifier                                                     0  1 0  0
##   clearance                                                      0  6 0  0
##   collection                                                     0  1 0  0
##   color                                                          0  1 0  0
##   comfort                                                        0  1 0  0
##   commercial                                                     0  1 0  0
##   commitment                                                     0  1 0  1
##   common                                                         0  1 0  0
##   communication                                                  0  3 0  0
##   communications                                                 0  1 0  0
##   compartmented                                                  0  1 0  0
##   competitions                                                   0  2 0  0
##   competitor                                                     0  2 0  0
##   conduct                                                        0  1 0  0
##   corporation                                                    0  3 0  0
##   creates                                                        0  1 0  0
##   curious                                                        0  1 0  0
##   current                                                        0  1 0  0
##   cyber                                                          0  1 0  0
##   datacentric                                                    0  1 0  0
##   datascience                                                    0  1 0  0
##   demonstrated                                                   0  1 0  0
##   described                                                      0  1 0  0
##   details                                                        0  1 0  0
##   detect                                                         0  1 0  0
##   developed                                                      0  1 0  0
##   differing                                                      0  1 0  0
##   discriminated                                                  0  1 0  0
##   diverse                                                        0  1 0  0
##   eager                                                          0  1 0  0
##   economic                                                       0  1 0  0
##   effective                                                      0  1 0  0
##   efforts                                                        0  1 0  0
##   else                                                           0  1 0  0
##   enforcement                                                    0  1 0  0
##   engineer                                                       0  1 0  0
##   engineers                                                      0  4 0  0
##   every                                                          0  1 0  0
##   everyone                                                       0  1 0  0
##   excited                                                        0  1 0  0
##   existence                                                      0  1 0  0
##   expect                                                         0  1 0  1
##   explore                                                        0  1 0  0
##   exploring                                                      0  1 0  0
##   expression                                                     0  1 0  0
##   extensive                                                      0  1 0  0
##   extremely                                                      0  1 0  0
##   facilities                                                     0  1 0  0
##   familiarity                                                    0  3 0  0
##   federally                                                      0  1 0  0
##   ffrdc                                                          0  1 0  0
##   filled                                                         0  1 0  0
##   focused                                                        0  1 0  0
##   force                                                          0  1 0  0
##   formulation                                                    0  1 0  0
##   funded                                                         0  1 0  0
##   gamechanging                                                   0  1 0  0
##   gnu                                                            0  1 0  0
##   government                                                     0  2 0  0
##   gpus                                                           0  1 0  0
##   greatest                                                       0  1 0  0
##   groups                                                         0  1 0  0
##   growing                                                        0  1 0  1
##   handson                                                        0  3 1  0
##   hardware                                                       0  1 0  0
##   highly                                                         0  1 0  0
##   ideas                                                          0  1 0  0
##   identity                                                       0  1 0  0
##   image                                                          0  1 0  0
##   impossible                                                     0  1 0  0
##   inception                                                      0  1 0  0
##   independent                                                    0  1 0  1
##   innovators                                                     0  1 0  0
##   instead                                                        0  1 0  0
##   intelligent                                                    0  2 0  0
##   interview                                                      0  1 0  0
##   issued                                                         0  2 0  0
##   kagglelike                                                     0  2 0  0
##   keras                                                          0  2 0  0
##   key                                                            0  1 0  1
##   laboratory                                                     0  1 0  0
##   latest                                                         0  1 0  0
##   launch                                                         0  2 0  0
##   lead                                                           0  2 0  0
##   leaders                                                        0  1 0  0
##   let                                                            0  1 0  0
##   libraries                                                      0  2 1  0
##   limits                                                         0  1 0  0
##   literally                                                      0  1 0  0
##   los                                                            0  1 0  0
##   main                                                           0  1 0  0
##   major                                                          0  1 0  0
##   meet                                                           0  1 0  1
##   member                                                         0  1 0  0
##   membrtch                                                       0  1 0  0
##   methodology                                                    0  1 0  0
##   minds                                                          0  1 0  0
##   minimum                                                        0  2 0  0
##   modern                                                         0  1 0  0
##   much                                                           0  1 0  0
##   multiple                                                       0  1 0  0
##   nations                                                        0  1 0  0
##   nature                                                         0  1 0  0
##   nearest                                                        0  1 0  0
##   network                                                        0  1 0  0
##   neural                                                         0  1 0  0
##   neurons                                                        0  1 0  0
##   none                                                           0  3 0  0
##   objective                                                      0  1 0  0
##   obtain                                                         0  4 0  0
##   obtaining                                                      0  2 0  0
##   office                                                         0  1 0  0
##   operate                                                        0  1 0  0
##   opportunityaffirmative                                         0  1 0  0
##   others                                                         0  1 1  0
##   partner                                                        0  1 0  0
##   pass                                                           0  1 0  0
##   passion                                                        0  1 0  0
##   passionate                                                     0  1 1  0
##   pay                                                            0  1 0  0
##   perspectives                                                   0  1 0  0
##   platypus                                                       0  1 0  0
##   policy                                                         0  1 0  0
##   polygraph                                                      0  1 0  0
##   possible                                                       0  1 0  0
##   poster                                                         0  1 0  0
##   potentially                                                    0  1 0  0
##   preferred                                                      0  1 1  0
##   pride                                                          0  1 0  0
##   problemsolving                                                 0  1 1  1
##   producing                                                      0  1 0  0
##   prototypes                                                     0  1 1  0
##   pushing                                                        0  1 0  0
##   pytorch                                                        0  2 0  0
##   radio                                                          0  2 0  0
##   radios                                                         0  1 0  0
##   rare                                                           0  1 0  0
##   readiness                                                      0  1 0  0
##   ready                                                          0  1 0  0
##   realworld                                                      0  1 0  0
##   reconnaissance                                                 0  1 0  0
##   regression                                                     0  3 0  0
##   regular                                                        0  1 0  0
##   reinforcement                                                  0  3 0  0
##   relocation                                                     0  1 0  0
##   requires                                                       0  3 0  0
##   requisition                                                    0  1 0  0
##   resource                                                       0  1 0  0
##   satellite                                                      0  1 0  0
##   schedule                                                       0  1 0  0
##   scientific                                                     0  2 0  0
##   scientists                                                     0  3 2  1
##   scikitlearn                                                    0  2 2  0
##   secret                                                         0  2 0  0
##   security                                                       0  7 0  0
##   segment                                                        0  1 0  0
##   sensitive                                                      0  1 0  0
##   serve                                                          0  1 0  1
##   share                                                          0  1 0  1
##   simulation                                                     0  1 0  0
##   simultaneously                                                 0  1 0  0
##   since                                                          0  3 0  0
##   skilled                                                        0  1 0  0
##   small                                                          0  1 0  0
##   solid                                                          0  1 0  0
##   space                                                          0  5 0  0
##   spacerelated                                                   0  1 0  0
##   spanning                                                       0  1 0  0
##   specialist                                                     0  2 0  0
##   specialized                                                    0  1 0  0
##   staff                                                          0  2 0  0
##   staffed                                                        0  1 0  0
##   statement                                                      0  2 0  0
##   stateoftheart                                                  0  2 0  0
##   states                                                         0  1 0  0
##   stf                                                            0  1 0  0
##   strength                                                       0  2 0  0
##   studies                                                        0  2 0  0
##   superior                                                       0  1 0  0
##   supervised                                                     0  2 0  0
##   supplement                                                     0  1 0  0
##   system                                                         0  2 0  1
##   takes                                                          0  1 0  0
##   technologically                                                0  1 0  0
##   telecom                                                        0  1 0  0
##   telecommunication                                              0  1 0  0
##   telecommunications                                             0  1 0  0
##   tensorflow                                                     0  2 2  0
##   theano                                                         0  2 0  0
##   theoretical                                                    0  1 0  0
##   theoretically                                                  0  1 0  0
##   thought                                                        0  2 0  0
##   title                                                          0  1 0  0
##   transcript                                                     0  1 0  0
##   transcripts                                                    0  1 0  0
##   trusted                                                        0  1 0  0
##   tssci                                                          0  1 0  0
##   type                                                           0  1 1  0
##   unconventional                                                 0  1 0  0
##   united                                                         0  1 0  0
##   university                                                     0  3 0  1
##   unsupervised                                                   0  2 0  0
##   valued                                                         0  1 0  0
##   veles                                                          0  2 0  0
##   verbal                                                         0  2 0  0
##   well                                                           0  2 0  0
##   whose                                                          0  1 0  0
##   workforce                                                      0  1 0  0
##   working                                                        0  4 1  2
##   yes                                                            0  1 0  0
##   zone                                                           0  1 0  0
##   acumen                                                         0  0 1  0
##   agent                                                          0  0 1  0
##   agree                                                          0  0 1  0
##   amongst                                                        0  0 2  0
##   ample                                                          0  0 1  0
##   capable                                                        0  0 1  0
##   composed                                                       0  0 1  0
##   contacted                                                      0  0 1  0
##   enjoy                                                          0  0 1  0
##   essential                                                      0  0 1  0
##   experts                                                        0  0 1  0
##   extract                                                        0  0 1  0
##   facebook                                                       0  0 1  0
##   fulltime                                                       0  0 1  0
##   hands                                                          0  0 1  0
##   hire                                                           0  0 2  0
##   inc                                                            0  0 1  0
##   indeed                                                         0  0 2  0
##   insights                                                       0  0 1  2
##   mind                                                           0  0 1  0
##   motivated                                                      0  0 1  0
##   numpy                                                          0  0 2  0
##   pandas                                                         0  0 2  0
##   papers                                                         0  0 1  0
##   phone                                                          0  0 1  0
##   productize                                                     0  0 1  0
##   quickly                                                        0  0 1  0
##   rely                                                           0  0 1  0
##   scalable                                                       0  0 3  0
##   sciencerelated                                                 0  0 1  0
##   sparkscalajava                                                 0  0 2  0
##   statistics                                                     0  0 3  3
##   structured                                                     0  0 1  0
##   text                                                           0  0 1  0
##   theory                                                         0  0 2  0
##   together                                                       0  0 1  0
##   uber                                                           0  0 1  0
##   unstructured                                                   0  0 1  0
##   valuable                                                       0  0 1  1
##   via                                                            0  0 1  0
##   worldclass                                                     0  0 1  0
##   year                                                           0  0 4  0
##   accelerate                                                     0  0 0  1
##   actionable                                                     0  0 0  1
##   actions                                                        0  0 0  1
##   addition                                                       0  0 0  2
##   adequately                                                     0  0 0  1
##   agency                                                         0  0 0  1
##   assist                                                         0  0 0  1
##   benefit                                                        0  0 0  1
##   cgi                                                            0  0 0  4
##   change                                                         0  0 0  1
##   collectively                                                   0  0 0  1
##   college                                                        0  0 0  1
##   come                                                           0  0 0  1
##   continues                                                      0  0 0  1
##   culture                                                        0  0 0  1
##   dashboards                                                     0  0 0  1
##   datahadoopnosql                                                0  0 0  1
##   desired                                                        0  0 0  1
##   discover                                                       0  0 0  1
##   discovering                                                    0  0 0  1
##   doctorate                                                      0  0 0  1
##   eco                                                            0  0 0  1
##   engineeringscience                                             0  0 0  1
##   exciting                                                       0  0 0  1
##   exploration                                                    0  0 0  1
##   extraordinary                                                  0  0 0  1
##   firms                                                          0  0 0  1
##   fouryear                                                       0  0 0  1
##   graduation                                                     0  0 0  1
##   helping                                                        0  0 0  1
##   heuristics                                                     0  0 0  1
##   high                                                           0  0 0  1
##   identifybuild                                                  0  0 0  1
##   impact                                                         0  0 0  1
##   improving                                                      0  0 0  1
##   interactive                                                    0  0 0  1
##   journeys                                                       0  0 0  1
##   levels                                                         0  0 0  1
##   managers                                                       0  0 0  1
##   material                                                       0  0 0  1
##   mathematics                                                    0  0 0  1
##   mining                                                         0  0 0  1
##   modeling                                                       0  0 0  1
##   monitor                                                        0  0 0  1
##   narrative                                                      0  0 0  1
##   narratives                                                     0  0 0  1
##   offer                                                          0  0 0  1
##   offering                                                       0  0 0  1
##   often                                                          0  0 0  1
##   ownership                                                      0  0 0  1
##   perform                                                        0  0 0  1
##   physics                                                        0  0 0  2
##   please                                                         0  0 0  1
##   practiced                                                      0  0 0  1
##   present                                                        0  0 0  1
##   professionals                                                  0  0 0  5
##   referrals                                                      0  0 0  1
##   reinforces                                                     0  0 0  1
##   rewards                                                        0  0 0  1
##   run                                                            0  0 0  1
##   sas                                                            0  0 0  1
##   scientistwill                                                  0  0 0  1
##   stakeholders                                                   0  0 0  1
##   statisticml                                                    0  0 0  1
##   supporting                                                     0  0 0  1
##   talent                                                         0  0 0  1
##   tell                                                           0  0 0  1
##   test                                                           0  0 0  1
##   told                                                           0  0 0  1
##   translating                                                    0  0 0  1
##   unsolicited                                                    0  0 0  1
##   wellsupported                                                  0  0 0  1
##   wwwcgicom                                                      0  0 0  1
##   310                                                            0  0 0  0
##   accuracy                                                       0  0 0  0
##   adhoc                                                          0  0 0  0
##   advancements                                                   0  0 0  0
##   aligned                                                        0  0 0  0
##   amazon                                                         0  0 0  0
##   ambiguous                                                      0  0 0  0
##   aptitude                                                       0  0 0  0
##   around                                                         0  0 0  0
##   assigned                                                       0  0 0  0
##   assurance                                                      0  0 0  0
##   atmosphere                                                     0  0 0  0
##   attain                                                         0  0 0  0
##   azure                                                          0  0 0  0
##   clean                                                          0  0 0  0
##   closely                                                        0  0 0  0
##   concise                                                        0  0 0  0
##   consult                                                        0  0 0  0
##   conveying                                                      0  0 0  0
##   creation                                                       0  0 0  0
##   custom                                                         0  0 0  0
##   databases                                                      0  0 0  0
##   datadriven                                                     0  0 0  0
##   decision                                                       0  0 0  0
##   department                                                     0  0 0  0
##   derive                                                         0  0 0  0
##   dev                                                            0  0 0  0
##   ensure                                                         0  0 0  0
##   evaluate                                                       0  0 0  0
##   excellent                                                      0  0 0  0
##   extracted                                                      0  0 0  0
##   extracting                                                     0  0 0  0
##   fastpaced                                                      0  0 0  0
##   focus                                                          0  0 0  0
##   fulfill                                                        0  0 0  0
##   goals                                                          0  0 0  0
##   heavy                                                          0  0 0  0
##   highvisibility                                                 0  0 0  0
##   independently                                                  0  0 0  0
##   informing                                                      0  0 0  0
##   infrastructure                                                 0  0 0  0
##   interpersonal                                                  0  0 0  0
##   look                                                           0  0 0  0
##   makes                                                          0  0 0  0
##   making                                                         0  0 0  0
##   manipulating                                                   0  0 0  0
##   mindbody                                                       0  0 0  0
##   mindset                                                        0  0 0  0
##   needed                                                         0  0 0  0
##   numbers                                                        0  0 0  0
##   organized                                                      0  0 0  0
##   participate                                                    0  0 0  0
##   performing                                                     0  0 0  0
##   principal                                                      0  0 0  0
##   prod                                                           0  0 0  0
##   promoting                                                      0  0 0  0
##   pte                                                            0  0 0  0
##   quality                                                        0  0 0  0
##   quantifying                                                    0  0 0  0
##   redshift                                                       0  0 0  0
##   rest                                                           0  0 0  0
##   salesforce                                                     0  0 0  0
##   schemas                                                        0  0 0  0
##   scripts                                                        0  0 0  0
##   sense                                                          0  0 0  0
##   smes                                                           0  0 0  0
##   ssis                                                           0  0 0  0
##   startuplike                                                    0  0 0  0
##   subject                                                        0  0 0  0
##   tasks                                                          0  0 0  0
##   units                                                          0  0 0  0
##   usage                                                          0  0 0  0
##   visual                                                         0  0 0  0
##   write                                                          0  0 0  0
##   100                                                            0  0 0  0
##   3rd                                                            0  0 0  0
##   aggregation                                                    0  0 0  0
##   along                                                          0  0 0  0
##   analyses                                                       0  0 0  0
##   bayesian                                                       0  0 0  0
##   boosting                                                       0  0 0  0
##   bootstrap                                                      0  0 0  0
##   businesses                                                     0  0 0  0
##   california                                                     0  0 0  0
##   claritas                                                       0  0 0  0
##   communities                                                    0  0 0  0
##   complete                                                       0  0 0  0
##   consumer                                                       0  0 0  0
##   copper                                                         0  0 0  0
##   customers                                                      0  0 0  0
##   demand                                                         0  0 0  0
##   demographic                                                    0  0 0  0
##   descriptive                                                    0  0 0  0
##   desirable                                                      0  0 0  0
##   directly                                                       0  0 0  0
##   discipline                                                     0  0 0  0
##   document                                                       0  0 0  0
##   dvr                                                            0  0 0  0
##   econometrics                                                   0  0 0  0
##   effectiveness                                                  0  0 0  0
##   emerging                                                       0  0 0  0
##   enhanced                                                       0  0 0  0
##   enterprise                                                     0  0 0  0
##   evaluation                                                     0  0 0  0
##   fiberoptic                                                     0  0 0  0
##   fios                                                           0  0 0  0
##   firmagraphic                                                   0  0 0  0
##   forecasting                                                    0  0 0  0
##   formats                                                        0  0 0  0
##   fort                                                           0  0 0  0
##   frontier                                                       0  0 0  0
##   ftr                                                            0  0 0  0
##   gather                                                         0  0 0  0
##   heavily                                                        0  0 0  0
##   highspeed                                                      0  0 0  0
##   home                                                           0  0 0  0
##   instant                                                        0  0 0  0
##   instructions                                                   0  0 0  0
##   irving                                                         0  0 0  0
##   linear                                                         0  0 0  0
##   locale                                                         0  0 0  0
##   location                                                       0  0 0  0
##   logistic                                                       0  0 0  0
##   machines                                                       0  0 0  0
##   manipulate                                                     0  0 0  0
##   medium                                                         0  0 0  0
##   methodologies                                                  0  0 0  0
##   multivariate                                                   0  0 0  0
##   nasdaq                                                         0  0 0  0
##   navigate                                                       0  0 0  0
##   networks                                                       0  0 0  0
##   newly                                                          0  0 0  0
##   oaks                                                           0  0 0  0
##   offerings                                                      0  0 0  0
##   offers                                                         0  0 0  0
##   oracle                                                         0  0 0  0
##   oral                                                           0  0 0  0
##   partnering                                                     0  0 0  0
##   party                                                          0  0 0  0
##   percent                                                        0  0 0  0
##   picture                                                        0  0 0  0
##   protection                                                     0  0 0  0
##   providing                                                      0  0 0  0
##   rdbms                                                          0  0 0  0
##   regularly                                                      0  0 0  0
##   relational                                                     0  0 0  0
##   residential                                                    0  0 0  0
##   rural                                                          0  0 0  0
##   scenarios                                                      0  0 0  0
##   search                                                         0  0 0  0
##   secure                                                         0  0 0  0
##   series                                                         0  0 0  0
##   server                                                         0  0 0  0
##   servers                                                        0  0 0  0
##   skillsrequirements                                             0  0 0  0
##   someall                                                        0  0 0  0
##   sources                                                        0  0 0  0
##   southern                                                       0  0 0  0
##   specific                                                       0  0 0  0
##   ssms                                                           0  0 0  0
##   structures                                                     0  0 0  0
##   suburban                                                       0  0 0  0
##   suite                                                          0  0 0  0
##   tampa                                                          0  0 0  0
##   thousand                                                       0  0 0  0
##   total                                                          0  0 0  0
##   translate                                                      0  0 0  0
##   trees                                                          0  0 0  0
##   types                                                          0  0 0  0
##   urban                                                          0  0 0  0
##   vantage                                                        0  0 0  0
##   variety                                                        0  0 0  0
##   vector                                                         0  0 0  0
##   video                                                          0  0 0  0
##   voice                                                          0  0 0  0
##   wayne                                                          0  0 0  0
##   wwwfrontiercom                                                 0  0 0  0
##   addons                                                         0  0 0  0
##   amazing                                                        0  0 0  0
##   bonus                                                          0  0 0  0
##   bring                                                          0  0 0  0
##   catered                                                        0  0 0  0
##   clear                                                          0  0 0  0
##   clustering                                                     0  0 0  0
##   combine                                                        0  0 0  0
##   constrained                                                    0  0 0  0
##   continuous                                                     0  0 0  0
##   convey                                                         0  0 0  0
##   credit                                                         0  0 0  0
##   date                                                           0  0 0  0
##   decisionmaking                                                 0  0 0  0
##   dedicated                                                      0  0 0  0
##   deploying                                                      0  0 0  0
##   drinks                                                         0  0 0  0
##   economics                                                      0  0 0  0
##   either                                                         0  0 0  0
##   events                                                         0  0 0  0
##   executives                                                     0  0 0  0
##   existing                                                       0  0 0  0
##   fabfitfun                                                      0  0 0  0
##   fastgrowing                                                    0  0 0  0
##   free                                                           0  0 0  0
##   fsa                                                            0  0 0  0
##   get                                                            0  0 0  0
##   hierarchical                                                   0  0 0  0
##   highprofile                                                    0  0 0  0
##   highvolume                                                     0  0 0  0
##   holistic                                                       0  0 0  0
##   ideal                                                          0  0 0  0
##   inference                                                      0  0 0  0
##   kitchen                                                        0  0 0  0
##   lifetime                                                       0  0 0  0
##   looker                                                         0  0 0  0
##   maintaining                                                    0  0 0  0
##   masters                                                        0  0 0  0
##   meals                                                          0  0 0  0
##   natural                                                        0  0 0  0
##   nlp                                                            0  0 0  0
##   optimize                                                       0  0 0  0
##   optimizing                                                     0  0 0  0
##   phd                                                            0  0 0  0
##   points                                                         0  0 0  0
##   proven                                                         0  0 0  0
##   psychology                                                     0  0 0  0
##   pto                                                            0  0 0  0
##   quarterly                                                      0  0 0  0
##   recommender                                                    0  0 0  0
##   retention                                                      0  0 0  0
##   rich                                                           0  0 0  0
##   segmentation                                                   0  0 0  0
##   snacks                                                         0  0 0  0
##   start                                                          0  0 0  0
##   stocked                                                        0  0 0  0
##   store                                                          0  0 0  0
##   subscription                                                   0  0 0  0
##   surveys                                                        0  0 0  0
##   tackle                                                         0  0 0  0
##   take                                                           0  0 0  0
##   transactions                                                   0  0 0  0
##   tune                                                           0  0 0  0
##   unit                                                           0  0 0  0
##   unlimited                                                      0  0 0  0
##   used                                                           0  0 0  0
##   visualization                                                  0  0 0  0
##   youll                                                          0  0 0  0
##   2011                                                           0  0 0  0
##   achieve                                                        0  0 0  0
##   advise                                                         0  0 0  0
##   assess                                                         0  0 0  0
##   awesome                                                        0  0 0  0
##   back                                                           0  0 0  0
##   bathroom                                                       0  0 0  0
##   beach                                                          0  0 0  0
##   breathe                                                        0  0 0  0
##   care                                                           0  0 0  0
##   challenging                                                    0  0 0  0
##   close                                                          0  0 0  0
##   cluster                                                        0  0 0  0
##   collaboration                                                  0  0 0  0
##   computational                                                  0  0 0  0
##   computing                                                      0  0 0  0
##   concerns                                                       0  0 0  0
##   dig                                                            0  0 0  0
##   disrupt                                                        0  0 0  0
##   donnas                                                         0  0 0  0
##   dsc                                                            0  0 0  0
##   egos                                                           0  0 0  0
##   enthusiasm                                                     0  0 0  0
##   equivalent                                                     0  0 0  0
##   establishing                                                   0  0 0  0
##   estimate                                                       0  0 0  0
##   excellence                                                     0  0 0  0
##   expanded                                                       0  0 0  0
##   experimental                                                   0  0 0  0
##   feasibility                                                    0  0 0  0
##   fit                                                            0  0 0  0
##   fluency                                                        0  0 0  0
##   folks                                                          0  0 0  0
##   foundations                                                    0  0 0  0
##   freshly                                                        0  0 0  0
##   generate                                                       0  0 0  0
##   goal                                                           0  0 0  0
##   hair                                                           0  0 0  0
##   haircuts                                                       0  0 0  0
##   happy                                                          0  0 0  0
##   heart                                                          0  0 0  0
##   hours                                                          0  0 0  0
##   humor                                                          0  0 0  0
##   hypothesis                                                     0  0 0  0
##   implementation                                                 0  0 0  0
##   indepth                                                        0  0 0  0
##   industries                                                     0  0 0  0
##   jerks                                                          0  0 0  0
##   just                                                           0  0 0  0
##   killer                                                         0  0 0  0
##   later                                                          0  0 0  0
##   live                                                           0  0 0  0
##   lunches                                                        0  0 0  0
##   mathematical                                                   0  0 0  0
##   millions                                                       0  0 0  0
##   nontechnical                                                   0  0 0  0
##   openair                                                        0  0 0  0
##   owning                                                         0  0 0  0
##   perks                                                          0  0 0  0
##   plan                                                           0  0 0  0
##   planning                                                       0  0 0  0
##   predict                                                        0  0 0  0
##   prima                                                          0  0 0  0
##   principles                                                     0  0 0  0
##   productionize                                                  0  0 0  0
##   productionizing                                                0  0 0  0
##   prototyping                                                    0  0 0  0
##   rapidly                                                        0  0 0  0
##   razors                                                         0  0 0  0
##   refactor                                                       0  0 0  0
##   reinventing                                                    0  0 0  0
##   renovated                                                      0  0 0  0
##   right                                                          0  0 0  0
##   roi                                                            0  0 0  0
##   said                                                           0  0 0  0
##   selection                                                      0  0 0  0
##   selflearning                                                   0  0 0  0
##   shave                                                          0  0 0  0
##   signals                                                        0  0 0  0
##   silicon                                                        0  0 0  0
##   similar                                                        0  0 0  0
##   skin                                                           0  0 0  0
##   specializes                                                    0  0 0  0
##   sprint                                                         0  0 0  0
##   squad                                                          0  0 0  0
##   started                                                        0  0 0  0
##   statements                                                     0  0 0  0
##   stay                                                           0  0 0  0
##   storytelling                                                   0  0 0  0
##   styling                                                        0  0 0  0
##   summary                                                        0  0 0  0
##   task                                                           0  0 0  0
##   teach                                                          0  0 0  0
##   teammates                                                      0  0 0  0
##   teamplaying                                                    0  0 0  0
##   testable                                                       0  0 0  0
##   think                                                          0  0 0  0
##   tractable                                                      0  0 0  0
##   transport                                                      0  0 0  0
##   tuning                                                         0  0 0  0
##   workflow                                                       0  0 0  0
##   wrangling                                                      0  0 0  0
##   496858                                                         0  0 0  0
##   675583                                                         0  0 0  0
##   advancing                                                      0  0 0  0
##   analyzing                                                      0  0 0  0
##   attach                                                         0  0 0  0
##   calmhsa                                                        0  0 0  0
##   categories                                                     0  0 0  0
##   certain                                                        0  0 0  0
##   chatting                                                       0  0 0  0
##   check                                                          0  0 0  0
##   conditions                                                     0  0 0  0
##   confirm                                                        0  0 0  0
##   contract                                                       0  0 0  0
##   contractor                                                     0  0 0  0
##   contractssubcontracts                                          0  0 0  0
##   covered                                                        0  0 0  0
##   created                                                        0  0 0  0
##   dana                                                           0  0 0  0
##   describing                                                     0  0 0  0
##   direction                                                      0  0 0  0
##   everify                                                        0  0 0  0
##   expected                                                       0  0 0  0
##   faculty                                                        0  0 0  0
##   federal                                                        0  0 0  0
##   final                                                          0  0 0  0
##   health                                                         0  0 0  0
##   incumbent                                                      0  0 0  0
##   inn                                                            0  0 0  0
##   interact                                                       0  0 0  0
##   interactions                                                   0  0 0  0
##   irvine                                                         0  0 0  0
##   kai                                                            0  0 0  0
##   listeners                                                      0  0 0  0
##   managing                                                       0  0 0  0
##   monthly                                                        0  0 0  0
##   mukamel                                                        0  0 0  0
##   multiyear                                                      0  0 0  0
##   nondiscrimination                                              0  0 0  0
##   objectives                                                     0  0 0  0
##   offered                                                        0  0 0  0
##   professors                                                     0  0 0  0
##   researchers                                                    0  0 0  0
##   resume                                                         0  0 0  0
##   sex                                                            0  0 0  0
##   statewide                                                      0  0 0  0
##   study                                                          0  0 0  0
##   substantial                                                    0  0 0  0
##   supervision                                                    0  0 0  0
##   two                                                            0  0 0  0
##   variables                                                      0  0 0  0
##   vendors                                                        0  0 0  0
##   zheng                                                          0  0 0  0
##   13485                                                          0  0 0  0
##   acts                                                           0  0 0  0
##   advance                                                        0  0 0  0
##   advantage                                                      0  0 0  0
##   alleviate                                                      0  0 0  0
##   amounts                                                        0  0 0  0
##   approaches                                                     0  0 0  0
##   arrangement                                                    0  0 0  0
##   aspects                                                        0  0 0  0
##   assistance                                                     0  0 0  0
##   automated                                                      0  0 0  0
##   aws                                                            0  0 0  0
##   careers                                                        0  0 0  0
##   catering                                                       0  0 0  0
##   central                                                        0  0 0  0
##   cgm                                                            0  0 0  0
##   chronic                                                        0  0 0  0
##   clinical                                                       0  0 0  0
##   closed                                                         0  0 0  0
##   conducts                                                       0  0 0  0
##   correct                                                        0  0 0  0
##   cost                                                           0  0 0  0
##   customized                                                     0  0 0  0
##   day                                                            0  0 0  0
##   describe                                                       0  0 0  0
##   develops                                                       0  0 0  0
##   devices                                                        0  0 0  0
##   diabetes                                                       0  0 0  0
##   difference                                                     0  0 0  0
##   disease                                                        0  0 0  0
##   driving                                                        0  0 0  0
##   educational                                                    0  0 0  0
##   elevating                                                      0  0 0  0
##   employee                                                       0  0 0  0
##   endtoend                                                       0  0 0  0
##   exhaustive                                                     0  0 0  0
##   extend                                                         0  0 0  0
##   family                                                         0  0 0  0
##   fda                                                            0  0 0  0
##   financial                                                      0  0 0  0
##   fully                                                          0  0 0  0
##   gain                                                           0  0 0  0
##   gift                                                           0  0 0  0
##   glucose                                                        0  0 0  0
##   grants                                                         0  0 0  0
##   grow                                                           0  0 0  0
##   h20ai                                                          0  0 0  0
##   happen                                                         0  0 0  0
##   healthcare                                                     0  0 0  0
##   innovations                                                    0  0 0  0
##   inspects                                                       0  0 0  0
##   insulin                                                        0  0 0  0
##   iso                                                            0  0 0  0
##   keep                                                           0  0 0  0
##   leave                                                          0  0 0  0
##   liaison                                                        0  0 0  0
##   life                                                           0  0 0  0
##   list                                                           0  0 0  0
##   lives                                                          0  0 0  0
##   located                                                        0  0 0  0
##   locations                                                      0  0 0  0
##   loop                                                           0  0 0  0
##   lowering                                                       0  0 0  0
##   made                                                           0  0 0  0
##   maintains                                                      0  0 0  0
##   managed                                                        0  0 0  0
##   manages                                                        0  0 0  0
##   math                                                           0  0 0  0
##   maximize                                                       0  0 0  0
##   medtronic                                                      0  0 0  0
##   mentality                                                      0  0 0  0
##   met                                                            0  0 0  0
##   meter                                                          0  0 0  0
##   mines                                                          0  0 0  0
##   modelling                                                      0  0 0  0
##   needs                                                          0  0 0  0
##   nonrelational                                                  0  0 0  0
##   novel                                                          0  0 0  0
##   paid                                                           0  0 0  0
##   pain                                                           0  0 0  0
##   patient                                                        0  0 0  0
##   patients                                                       0  0 0  0
##   pens                                                           0  0 0  0
##   physiology                                                     0  0 0  0
##   place                                                          0  0 0  0
##   positive                                                       0  0 0  0
##   precise                                                        0  0 0  0
##   prior                                                          0  0 0  0
##   productivity                                                   0  0 0  0
##   pump                                                           0  0 0  0
##   pumps                                                          0  0 0  0
##   push                                                           0  0 0  0
##   raise                                                          0  0 0  0
##   range                                                          0  0 0  0
##   raw                                                            0  0 0  0
##   record                                                         0  0 0  0
##   regulations                                                    0  0 0  0
##   remote                                                         0  0 0  0
##   report                                                         0  0 0  0
##   representative                                                 0  0 0  0
##   restore                                                        0  0 0  0
##   retirement                                                     0  0 0  0
##   rewarding                                                      0  0 0  0
##   roadmap                                                        0  0 0  0
##   scripting                                                      0  0 0  0
##   section                                                        0  0 0  0
##   shape                                                          0  0 0  0
##   simplify                                                       0  0 0  0
##   stock                                                          0  0 0  0
##   succeed                                                        0  0 0  0
##   successfully                                                   0  0 0  0
##   target                                                         0  0 0  0
##   thankyou                                                       0  0 0  0
##   therapies                                                      0  0 0  0
##   therapy                                                        0  0 0  0
##   things                                                         0  0 0  0
##   thrills                                                        0  0 0  0
##   tomorrow                                                       0  0 0  0
##   toward                                                         0  0 0  0
##   track                                                          0  0 0  0
##   transform                                                      0  0 0  0
##   transforms                                                     0  0 0  0
##   ultimate                                                       0  0 0  0
##   uninformative                                                  0  0 0  0
##   universal                                                      0  0 0  0
##   uptodate                                                       0  0 0  0
##   utilizing                                                      0  0 0  0
##   valuebased                                                     0  0 0  0
##   vast                                                           0  0 0  0
##   verifies                                                       0  0 0  0
##   volunteer                                                      0  0 0  0
##   want                                                           0  0 0  0
##   ways                                                           0  0 0  0
##   wellbeing                                                      0  0 0  0
##   worldwide                                                      0  0 0  0
##   yesterday                                                      0  0 0  0
##   allowing                                                       0  0 0  0
##   annually                                                       0  0 0  0
##   apache                                                         0  0 0  0
##   apis                                                           0  0 0  0
##   attendance                                                     0  0 0  0
##   attract                                                        0  0 0  0
##   availability                                                   0  0 0  0
##   based                                                          0  0 0  0
##   bestinclass                                                    0  0 0  0
##   bias                                                           0  0 0  0
##   biggest                                                        0  0 0  0
##   bizrate                                                        0  0 0  0
##   buyers                                                         0  0 0  0
##   capability                                                     0  0 0  0
##   careerboosting                                                 0  0 0  0
##   case                                                           0  0 0  0
##   choose                                                         0  0 0  0
##   cleansing                                                      0  0 0  0
##   collaborative                                                  0  0 0  0
##   collected                                                      0  0 0  0
##   communicating                                                  0  0 0  0
##   comprehensive                                                  0  0 0  0
##   conferences                                                    0  0 0  0
##   cons                                                           0  0 0  0
##   consumers                                                      0  0 0  0
##   continuously                                                   0  0 0  0
##   contributor                                                    0  0 0  0
##   coordinating                                                   0  0 0  0
##   core                                                           0  0 0  0
##   cover                                                          0  0 0  0
##   creed                                                          0  0 0  0
##   cross                                                          0  0 0  0
##   customerfacing                                                 0  0 0  0
##   customergenerated                                              0  0 0  0
##   cycle                                                          0  0 0  0
##   definition                                                     0  0 0  0
##   depending                                                      0  0 0  0
##   ecosystem                                                      0  0 0  0
##   ecosystems                                                     0  0 0  0
##   eeo                                                            0  0 0  0
##   effectively                                                    0  0 0  0
##   emergent                                                       0  0 0  0
##   evaluating                                                     0  0 0  0
##   excitement                                                     0  0 0  0
##   experiences                                                    0  0 0  0
##   exposed                                                        0  0 0  0
##   fun                                                            0  0 0  0
##   genetic                                                        0  0 0  0
##   gigabyte                                                       0  0 0  0
##   given                                                          0  0 0  0
##   hired                                                          0  0 0  0
##   holdout                                                        0  0 0  0
##   httpwwwuscisgoveverifyemployees                                0  0 0  0
##   hyper                                                          0  0 0  0
##   integration                                                    0  0 0  0
##   investment                                                     0  0 0  0
##   likeminded                                                     0  0 0  0
##   local                                                          0  0 0  0
##   lot                                                            0  0 0  0
##   means                                                          0  0 0  0
##   measurements                                                   0  0 0  0
##   meredith                                                       0  0 0  0
##   million                                                        0  0 0  0
##   modelsresults                                                  0  0 0  0
##   move                                                           0  0 0  0
##   needle                                                         0  0 0  0
##   ones                                                           0  0 0  0
##   overfitting                                                    0  0 0  0
##   paradigm                                                       0  0 0  0
##   parameter                                                      0  0 0  0
##   participates                                                   0  0 0  0
##   participating                                                  0  0 0  0
##   parties                                                        0  0 0  0
##   partners                                                       0  0 0  0
##   persons                                                        0  0 0  0
##   popular                                                        0  0 0  0
##   practical                                                      0  0 0  0
##   priorities                                                     0  0 0  0
##   pros                                                           0  0 0  0
##   public                                                         0  0 0  0
##   ratings                                                        0  0 0  0
##   regardless                                                     0  0 0  0
##   reimbursement                                                  0  0 0  0
##   retail                                                         0  0 0  0
##   retailers                                                      0  0 0  0
##   rmse                                                           0  0 0  0
##   rocksolid                                                      0  0 0  0
##   rpython                                                        0  0 0  0
##   selflearner                                                    0  0 0  0
##   seller                                                         0  0 0  0
##   semisupervised                                                 0  0 0  0
##   sessions                                                       0  0 0  0
##   side                                                           0  0 0  0
##   sizes                                                          0  0 0  0
##   social                                                         0  0 0  0
##   state                                                          0  0 0  0
##   supportive                                                     0  0 0  0
##   switch                                                         0  0 0  0
##   technologist                                                   0  0 0  0
##   terabytescale                                                  0  0 0  0
##   thousands                                                      0  0 0  0
##   thrive                                                         0  0 0  0
##   timeline                                                       0  0 0  0
##   toolkits                                                       0  0 0  0
##   traffic                                                        0  0 0  0
##   tuition                                                        0  0 0  0
##   validation                                                     0  0 0  0
##   verified                                                       0  0 0  0
##   versa                                                          0  0 0  0
##   vice                                                           0  0 0  0
##   xgboost                                                        0  0 0  0
##   accomplished                                                   0  0 0  0
##   advisors                                                       0  0 0  0
##   ahead                                                          0  0 0  0
##   ambition                                                       0  0 0  0
##   becoming                                                       0  0 0  0
##   boasts                                                         0  0 0  0
##   boundless                                                      0  0 0  0
##   broader                                                        0  0 0  0
##   channels                                                       0  0 0  0
##   citizen                                                        0  0 0  0
##   citizens                                                       0  0 0  0
##   comfortable                                                    0  0 0  0
##   consistencystandardization                                     0  0 0  0
##   corporate                                                      0  0 0  0
##   coveted                                                        0  0 0  0
##   define                                                         0  0 0  0
##   defining                                                       0  0 0  0
##   distribution                                                   0  0 0  0
##   domains                                                        0  0 0  0
##   dont                                                           0  0 0  0
##   earned                                                         0  0 0  0
##   elite                                                          0  0 0  0
##   entertaining                                                   0  0 0  0
##   entertainment                                                  0  0 0  0
##   entrepreneurs                                                  0  0 0  0
##   environments                                                   0  0 0  0
##   epic                                                           0  0 0  0
##   exclusive                                                      0  0 0  0
##   forest                                                         0  0 0  0
##   generouslysponsored                                            0  0 0  0
##   giants                                                         0  0 0  0
##   glmregression                                                  0  0 0  0
##   hard                                                           0  0 0  0
##   head                                                           0  0 0  0
##   hit                                                            0  0 0  0
##   hollywood                                                      0  0 0  0
##   impacting                                                      0  0 0  0
##   improvements                                                   0  0 0  0
##   individual                                                     0  0 0  0
##   investors                                                      0  0 0  0
##   know                                                           0  0 0  0
##   lasting                                                        0  0 0  0
##   lean                                                           0  0 0  0
##   lifestyle                                                      0  0 0  0
##   mastery                                                        0  0 0  0
##   microstrategy                                                  0  0 0  0
##   movies                                                         0  0 0  0
##   news                                                           0  0 0  0
##   nonsql                                                         0  0 0  0
##   open                                                           0  0 0  0
##   opposed                                                        0  0 0  0
##   particularly                                                   0  0 0  0
##   planet                                                         0  0 0  0
##   plentiful                                                      0  0 0  0
##   pluto                                                          0  0 0  0
##   powerbi                                                        0  0 0  0
##   premier                                                        0  0 0  0
##   privilege                                                      0  0 0  0
##   proactively                                                    0  0 0  0
##   profoundly                                                     0  0 0  0
##   pull                                                           0  0 0  0
##   qualities                                                      0  0 0  0
##   quest                                                          0  0 0  0
##   questioning                                                    0  0 0  0
##   random                                                         0  0 0  0
##   reach                                                          0  0 0  0
##   renowned                                                       0  0 0  0
##   revolutionize                                                  0  0 0  0
##   scoring                                                        0  0 0  0
##   seemingly                                                      0  0 0  0
##   selective                                                      0  0 0  0
##   selfstarters                                                   0  0 0  0
##   servicing                                                      0  0 0  0
##   significantly                                                  0  0 0  0
##   smartest                                                       0  0 0  0
##   speed                                                          0  0 0  0
##   stakes                                                         0  0 0  0
##   starts                                                         0  0 0  0
##   strongly                                                       0  0 0  0
##   successful                                                     0  0 0  0
##   suggesting                                                     0  0 0  0
##   supported                                                      0  0 0  0
##   television                                                     0  0 0  0
##   timely                                                         0  0 0  0
##   treat                                                          0  0 0  0
##   unstructurednonstandardized                                    0  0 0  0
##   useful                                                         0  0 0  0
##   viewers                                                        0  0 0  0
##   warp                                                           0  0 0  0
##   west                                                           0  0 0  0
##   wide                                                           0  0 0  0
##   youre                                                          0  0 0  0
##   airflow                                                        0  0 0  0
##   art                                                            0  0 0  0
##   automotive                                                     0  0 0  0
##   block                                                          0  0 0  0
##   cars                                                           0  0 0  0
##   cellphone                                                      0  0 0  0
##   commuter                                                       0  0 0  0
##   competing                                                      0  0 0  0
##   competition                                                    0  0 0  0
##   construct                                                      0  0 0  0
##   coverage                                                       0  0 0  0
##   daily                                                          0  0 0  0
##   discount                                                       0  0 0  0
##   docker                                                         0  0 0  0
##   dollar                                                         0  0 0  0
##   eagerness                                                      0  0 0  0
##   etl                                                            0  0 0  0
##   fair                                                           0  0 0  0
##   families                                                       0  0 0  0
##   features                                                       0  0 0  0
##   flask                                                          0  0 0  0
##   green                                                          0  0 0  0
##   incentives                                                     0  0 0  0
##   jupyter                                                        0  0 0  0
##   kaggle                                                         0  0 0  0
##   kubernetes                                                     0  0 0  0
##   light                                                          0  0 0  0
##   luigi                                                          0  0 0  0
##   lunch                                                          0  0 0  0
##   mentorship                                                     0  0 0  0
##   molds                                                          0  0 0  0
##   onboarding                                                     0  0 0  0
##   owners                                                         0  0 0  0
##   package                                                        0  0 0  0
##   parking                                                        0  0 0  0
##   pivotal                                                        0  0 0  0
##   play                                                           0  0 0  0
##   postgres                                                       0  0 0  0
##   rail                                                           0  0 0  0
##   realtime                                                       0  0 0  0
##   reshape                                                        0  0 0  0
##   running                                                        0  0 0  0
##   scientistmachine                                               0  0 0  0
##   shopping                                                       0  0 0  0
##   sklearn                                                        0  0 0  0
##   sqlalchemy                                                     0  0 0  0
##   superset                                                       0  0 0  0
##   treasure                                                       0  0 0  0
##   trillion                                                       0  0 0  0
##   warehousing                                                    0  0 0  0
##   workflows                                                      0  0 0  0
##   accurate                                                       0  0 0  0
##   aggregate                                                      0  0 0  0
##   applied                                                        0  0 0  0
##   appreciated                                                    0  0 0  0
##   appropriate                                                    0  0 0  0
##   athena                                                         0  0 0  0
##   author                                                         0  0 0  0
##   brands                                                         0  0 0  0
##   breaking                                                       0  0 0  0
##   broadly                                                        0  0 0  0
##   command                                                        0  0 0  0
##   competency                                                     0  0 0  0
##   components                                                     0  0 0  0
##   crossfunctionally                                              0  0 0  0
##   delivered                                                      0  0 0  0
##   establish                                                      0  0 0  0
##   established                                                    0  0 0  0
##   evaluations                                                    0  0 0  0
##   expand                                                         0  0 0  0
##   explanation                                                    0  0 0  0
##   factual                                                        0  0 0  0
##   factuals                                                       0  0 0  0
##   filter                                                         0  0 0  0
##   greatly                                                        0  0 0  0
##   guidance                                                       0  0 0  0
##   guide                                                          0  0 0  0
##   handle                                                         0  0 0  0
##   happening                                                      0  0 0  0
##   impactful                                                      0  0 0  0
##   increasing                                                     0  0 0  0
##   industryleading                                                0  0 0  0
##   influence                                                      0  0 0  0
##   intelligently                                                  0  0 0  0
##   interpret                                                      0  0 0  0
##   known                                                          0  0 0  0
##   knows                                                          0  0 0  0
##   learnings                                                      0  0 0  0
##   letters                                                        0  0 0  0
##   line                                                           0  0 0  0
##   love                                                           0  0 0  0
##   marketers                                                      0  0 0  0
##   matched                                                        0  0 0  0
##   messy                                                          0  0 0  0
##   places                                                         0  0 0  0
##   prescribe                                                      0  0 0  0
##   propose                                                        0  0 0  0
##   questions                                                      0  0 0  0
##   really                                                         0  0 0  0
##   recommended                                                    0  0 0  0
##   sell                                                           0  0 0  0
##   several                                                        0  0 0  0
##   sharing                                                        0  0 0  0
##   shell                                                          0  0 0  0
##   specifications                                                 0  0 0  0
##   structure                                                      0  0 0  0
##   teaching                                                       0  0 0  0
##   thanks                                                         0  0 0  0
##   trust                                                          0  0 0  0
##   uncertainty                                                    0  0 0  0
##   underlying                                                     0  0 0  0
##   understands                                                    0  0 0  0
##   utilities                                                      0  0 0  0
##   variance                                                       0  0 0  0
##   willingness                                                    0  0 0  0
##   wrangle                                                        0  0 0  0
##   almost                                                         0  0 0  0
##   artistic                                                       0  0 0  0
##   ashamed                                                        0  0 0  0
##   augmenting                                                     0  0 0  0
##   away                                                           0  0 0  0
##   bokeh                                                          0  0 0  0
##   buzz                                                           0  0 0  0
##   classifiers                                                    0  0 0  0
##   coming                                                         0  0 0  0
##   considering                                                    0  0 0  0
##   constantly                                                     0  0 0  0
##   creativity                                                     0  0 0  0
##   credentials                                                    0  0 0  0
##   dark                                                           0  0 0  0
##   demo                                                           0  0 0  0
##   didnt                                                          0  0 0  0
##   discussions                                                    0  0 0  0
##   don                                                            0  0 0  0
##   drama                                                          0  0 0  0
##   dry                                                            0  0 0  0
##   enjoying                                                       0  0 0  0
##   everybody                                                      0  0 0  0
##   everything                                                     0  0 0  0
##   facing                                                         0  0 0  0
##   fear                                                           0  0 0  0
##   feel                                                           0  0 0  0
##   finds                                                          0  0 0  0
##   floor                                                          0  0 0  0
##   frequent                                                       0  0 0  0
##   frequently                                                     0  0 0  0
##   generation                                                     0  0 0  0
##   github                                                         0  0 0  0
##   ground                                                         0  0 0  0
##   handful                                                        0  0 0  0
##   hidden                                                         0  0 0  0
##   hobby                                                          0  0 0  0
##   hole                                                           0  0 0  0
##   hone                                                           0  0 0  0
##   ingesting                                                      0  0 0  0
##   integrity                                                      0  0 0  0
##   knowledgegraphs                                                0  0 0  0
##   laid                                                           0  0 0  0
##   late                                                           0  0 0  0
##   likely                                                         0  0 0  0
##   linkedin                                                       0  0 0  0
##   links                                                          0  0 0  0
##   little                                                         0  0 0  0
##   matplotlib                                                     0  0 0  0
##   mildly                                                         0  0 0  0
##   modularization                                                 0  0 0  0
##   music                                                          0  0 0  0
##   near                                                           0  0 0  0
##   night                                                          0  0 0  0
##   number                                                         0  0 0  0
##   occasional                                                     0  0 0  0
##   occurrences                                                    0  0 0  0
##   politics                                                       0  0 0  0
##   portfolio                                                      0  0 0  0
##   practice                                                       0  0 0  0
##   pragmatist                                                     0  0 0  0
##   prefer                                                         0  0 0  0
##   presenting                                                     0  0 0  0
##   prevent                                                        0  0 0  0
##   purist                                                         0  0 0  0
##   rather                                                         0  0 0  0
##   reflect                                                        0  0 0  0
##   reuse                                                          0  0 0  0
##   résumé                                                         0  0 0  0
##   score                                                          0  0 0  0
##   selecting                                                      0  0 0  0
##   semantic                                                       0  0 0  0
##   serverside                                                     0  0 0  0
##   smarter                                                        0  0 0  0
##   sounds                                                         0  0 0  0
##   specializing                                                   0  0 0  0
##   spend                                                          0  0 0  0
##   stats                                                          0  0 0  0
##   still                                                          0  0 0  0
##   strive                                                         0  0 0  0
##   summarization                                                  0  0 0  0
##   thing                                                          0  0 0  0
##   thirdparty                                                     0  0 0  0
##   topic                                                          0  0 0  0
##   topics                                                         0  0 0  0
##   uncovering                                                     0  0 0  0
##   verifying                                                      0  0 0  0
##   acquisition                                                    0  0 0  0
##   adoption                                                       0  0 0  0
##   centene                                                        0  0 0  0
##   claims                                                         0  0 0  0
##   db2                                                            0  0 0  0
##   different                                                      0  0 0  0
##   distinguish                                                    0  0 0  0
##   durability                                                     0  0 0  0
##   expectations                                                   0  0 0  0
##   experiments                                                    0  0 0  0
##   exploratory                                                    0  0 0  0
##   format                                                         0  0 0  0
##   hana                                                           0  0 0  0
##   improvement                                                    0  0 0  0
##   informatics                                                    0  0 0  0
##   knowledgeexperience                                            0  0 0  0
##   liaisons                                                       0  0 0  0
##   measure                                                        0  0 0  0
##   membership                                                     0  0 0  0
##   mysql                                                          0  0 0  0
##   presentations                                                  0  0 0  0
##   provider                                                       0  0 0  0
##   recognize                                                      0  0 0  0
##   sap                                                            0  0 0  0
##   scale                                                          0  0 0  0
##   targeted                                                       0  0 0  0
##   teradata                                                       0  0 0  0
##   validate                                                       0  0 0  0
##   values                                                         0  0 0  0
##   adept                                                          0  0 0  0
##   advantagesdrawbacks                                            0  0 0  0
##   adwords                                                        0  0 0  0
##   artificial                                                     0  0 0  0
##   becseeitis                                                     0  0 0  0
##   catalyst                                                       0  0 0  0
##   coremetrics                                                    0  0 0  0
##   courses                                                        0  0 0  0
##   creatingrunning                                                0  0 0  0
##   crimson                                                        0  0 0  0
##   datacomputing                                                  0  0 0  0
##   digitalocean                                                   0  0 0  0
##   draw                                                           0  0 0  0
##   education                                                      0  0 0  0
##   framework                                                      0  0 0  0
##   gained                                                         0  0 0  0
##   ggplot                                                         0  0 0  0
##   gurobi                                                         0  0 0  0
##   hexagon                                                        0  0 0  0
##   inflight                                                       0  0 0  0
##   mine                                                           0  0 0  0
##   miningdata                                                     0  0 0  0
##   multimedia                                                     0  0 0  0
##   objects                                                        0  0 0  0
##   performance                                                    0  0 0  0
##   periscope                                                      0  0 0  0
##   primary                                                        0  0 0  0
##   providers                                                      0  0 0  0
##   scenario                                                       0  0 0  0
##   secondary                                                      0  0 0  0
##   simulations                                                    0  0 0  0
##   site                                                           0  0 0  0
##   slq                                                            0  0 0  0
##   tree                                                           0  0 0  0
##   usingcreating                                                  0  0 0  0
##   visualizingpresenting                                          0  0 0  0
##   600                                                            0  0 0  0
##   adtech                                                         0  0 0  0
##   backgrounds                                                    0  0 0  0
##   balance                                                        0  0 0  0
##   causal                                                         0  0 0  0
##   cities                                                         0  0 0  0
##   crosschannel                                                   0  0 0  0
##   demonstrable                                                   0  0 0  0
##   eaters                                                         0  0 0  0
##   forward                                                        0  0 0  0
##   grade                                                          0  0 0  0
##   growth                                                         0  0 0  0
##   hunger                                                         0  0 0  0
##   ignite                                                         0  0 0  0
##   ltv                                                            0  0 0  0
##   marketindividual                                               0  0 0  0
##   meeting                                                        0  0 0  0
##   motion                                                         0  0 0  0
##   moving                                                         0  0 0  0
##   planningprioritization                                         0  0 0  0
##   player                                                         0  0 0  0
##   prioritization                                                 0  0 0  0
##   response                                                       0  0 0  0
##   riders                                                         0  0 0  0
##   seek                                                           0  0 0  0
##   spirit                                                         0  0 0  0
##   stakeholder                                                    0  0 0  0
##   swift                                                          0  0 0  0
##   welcome                                                        0  0 0  0
##   1236                                                           0  0 0  0
##   answer                                                         0  0 0  0
##   apparel                                                        0  0 0  0
##   assortment                                                     0  0 0  0
##   backtest                                                       0  0 0  0
##   behaviors                                                      0  0 0  0
##   brand                                                          0  0 0  0
##   bright                                                         0  0 0  0
##   brightest                                                      0  0 0  0
##   colorful                                                       0  0 0  0
##   commerce                                                       0  0 0  0
##   community                                                      0  0 0  0
##   compare                                                        0  0 0  0
##   continually                                                    0  0 0  0
##   course                                                         0  0 0  0
##   curates                                                        0  0 0  0
##   currently                                                      0  0 0  0
##   customerdriven                                                 0  0 0  0
##   decor                                                          0  0 0  0
##   designers                                                      0  0 0  0
##   designs                                                        0  0 0  0
##   digitally                                                      0  0 0  0
##   drives                                                         0  0 0  0
##   dynamic                                                        0  0 0  0
##   effort                                                         0  0 0  0
##   empathy                                                        0  0 0  0
##   empower                                                        0  0 0  0
##   engagement                                                     0  0 0  0
##   engaging                                                       0  0 0  0
##   exist                                                          0  0 0  0
##   fashion                                                        0  0 0  0
##   feminine                                                       0  0 0  0
##   generated                                                      0  0 0  0
##   greatwhat                                                      0  0 0  0
##   grounded                                                       0  0 0  0
##   honesty                                                        0  0 0  0
##   hundred                                                        0  0 0  0
##   inhouse                                                        0  0 0  0
##   inside                                                         0  0 0  0
##   inspired                                                       0  0 0  0
##   inspiring                                                      0  0 0  0
##   intellectual                                                   0  0 0  0
##   intersection                                                   0  0 0  0
##   investing                                                      0  0 0  0
##   iterative                                                      0  0 0  0
##   javascript                                                     0  0 0  0
##   kind                                                           0  0 0  0
##   leverages                                                      0  0 0  0
##   leveraging                                                     0  0 0  0
##   linux                                                          0  0 0  0
##   matterwhat                                                     0  0 0  0
##   modcloth                                                       0  0 0  0
##   monthsis                                                       0  0 0  0
##   native                                                         0  0 0  0
##   note                                                           0  0 0  0
##   offline                                                        0  0 0  0
##   omnichannel                                                    0  0 0  0
##   outcomeswhy                                                    0  0 0  0
##   particular                                                     0  0 0  0
##   performances                                                   0  0 0  0
##   prints                                                         0  0 0  0
##   professional                                                   0  0 0  0
##   retaining                                                      0  0 0  0
##   sells                                                          0  0 0  0
##   sentiment                                                      0  0 0  0
##   sequence                                                       0  0 0  0
##   signature                                                      0  0 0  0
##   silhouettes                                                    0  0 0  0
##   sit                                                            0  0 0  0
##   stem                                                           0  0 0  0
##   style                                                          0  0 0  0
##   unparalleled                                                   0  0 0  0
##   upon                                                           0  0 0  0
##   version                                                        0  0 0  0
##   vintage                                                        0  0 0  0
##   wants                                                          0  0 0  0
##   warehouse                                                      0  0 0  0
##   whats                                                          0  0 0  0
##   adventure                                                      0  0 0  0
##   awaits                                                         0  0 0  0
##   bcg                                                            0  0 0  0
##   bcgdvcom                                                       0  0 0  0
##   collaborating                                                  0  0 0  0
##   cultivate                                                      0  0 0  0
##   dashboard                                                      0  0 0  0
##   demonstrate                                                    0  0 0  0
##   deployed                                                       0  0 0  0
##   evergrowing                                                    0  0 0  0
##   fast                                                           0  0 0  0
##   filtering                                                      0  0 0  0
##   flurry                                                         0  0 0  0
##   foundation                                                     0  0 0  0
##   graph                                                          0  0 0  0
##   graphing                                                       0  0 0  0
##   hadoopmapreduce                                                0  0 0  0
##   httpswwwbcgdvcom                                               0  0 0  0
##   ingestion                                                      0  0 0  0
##   interested                                                     0  0 0  0
##   interviews                                                     0  0 0  0
##   least                                                          0  0 0  0
##   listed                                                         0  0 0  0
##   mixpanel                                                       0  0 0  0
##   onpremises                                                     0  0 0  0
##   pair                                                           0  0 0  0
##   querying                                                       0  0 0  0
##   ranging                                                        0  0 0  0
##   remarkable                                                     0  0 0  0
##   restricted                                                     0  0 0  0
##   resumes                                                        0  0 0  0
##   screened                                                       0  0 0  0
##   solely                                                         0  0 0  0
##   strategic                                                      0  0 0  0
##   talks                                                          0  0 0  0
##   though                                                         0  0 0  0
##   varied                                                         0  0 0  0
##   ventures                                                       0  0 0  0
##   website                                                        0  0 0  0
##   additionally                                                   0  0 0  0
##   autonomously                                                   0  0 0  0
##   classic                                                        0  0 0  0
##   clearances                                                     0  0 0  0
##   compliment                                                     0  0 0  0
##   cores                                                          0  0 0  0
##   fpga                                                           0  0 0  0
##   matlab                                                         0  0 0  0
##   qualify                                                        0  0 0  0
##   replace                                                        0  0 0  0
##   signal                                                         0  0 0  0
##   softwaredefined                                                0  0 0  0
##   studying                                                       0  0 0  0
##   transceivers                                                   0  0 0  0
##   unixlinux                                                      0  0 0  0
##   3103365432                                                     0  0 0  0
##   accommodation                                                  0  0 0  0
##   adapt                                                          0  0 0  0
##   analytic                                                       0  0 0  0
##   ancestry                                                       0  0 0  0
##   api                                                            0  0 0  0
##   applicationsystem                                              0  0 0  0
##   assessment                                                     0  0 0  0
##   caffetensorflow                                                0  0 0  0
##   character                                                      0  0 0  0
##   childbirth                                                     0  0 0  0
##   collecting                                                     0  0 0  0
##   condition                                                      0  0 0  0
##   configuration                                                  0  0 0  0
##   consistent                                                     0  0 0  0
##   contact                                                        0  0 0  0
##   detailoriented                                                 0  0 0  0
##   disabled                                                       0  0 0  0
##   distributions                                                  0  0 0  0
##   email                                                          0  0 0  0
##   estimators                                                     0  0 0  0
##   extracurricular                                                0  0 0  0
##   featuredriven                                                  0  0 0  0
##   forests                                                        0  0 0  0
##   forwith                                                        0  0 0  0
##   fromexposing                                                   0  0 0  0
##   gpa                                                            0  0 0  0
##   ieomailboxaeroorg                                              0  0 0  0
##   imagesignal                                                    0  0 0  0
##   institution                                                    0  0 0  0
##   interdisciplinary                                              0  0 0  0
##   interest                                                       0  0 0  0
##   interfaces                                                     0  0 0  0
##   json                                                           0  0 0  0
##   keen                                                           0  0 0  0
##   knearest                                                       0  0 0  0
##   leads                                                          0  0 0  0
##   library                                                        0  0 0  0
##   lifecycles                                                     0  0 0  0
##   likelihood                                                     0  0 0  0
##   maturity                                                       0  0 0  0
##   maximum                                                        0  0 0  0
##   missioncritical                                                0  0 0  0
##   neighbors                                                      0  0 0  0
##   objectivity                                                    0  0 0  0
##   octavematlab                                                   0  0 0  0
##   opencv                                                         0  0 0  0
##   operating                                                      0  0 0  0
##   organizational                                                 0  0 0  0
##   participation                                                  0  0 0  0
##   path                                                           0  0 0  0
##   pertinent                                                      0  0 0  0
##   positions                                                      0  0 0  0
##   pregnancy                                                      0  0 0  0
##   presentation                                                   0  0 0  0
##   prevalence                                                     0  0 0  0
##   progress                                                       0  0 0  0
##   proofofconcept                                                 0  0 0  0
##   prove                                                          0  0 0  0
##   pursuing                                                       0  0 0  0
##   recognized                                                     0  0 0  0
##   resilient                                                      0  0 0  0
##   responsibility                                                 0  0 0  0
##   selected                                                       0  0 0  0
##   socially                                                       0  0 0  0
##   softwaresystem                                                 0  0 0  0
##   softwaresystems                                                0  0 0  0
##   spent                                                          0  0 0  0
##   standards                                                      0  0 0  0
##   technically                                                    0  0 0  0
##   typically                                                      0  0 0  0
##   utilization                                                    0  0 0  0
##   viability                                                      0  0 0  0
##   virtualizationcloud                                            0  0 0  0
##   xml                                                            0  0 0  0
##   advantages                                                     0  0 0  0
##   anywhere                                                       0  0 0  0
##   careersbcgdvcomlearnmore                                       0  0 0  0
##   competencies                                                   0  0 0  0
##   cutting                                                        0  0 0  0
##   edge                                                           0  0 0  0
##   horizon                                                        0  0 0  0
##   manhattan                                                      0  0 0  0
##   truly                                                          0  0 0  0
##   accenture                                                      0  0 0  0
##   acceptance                                                     0  0 0  0
##   adapting                                                       0  0 0  0
##   affiliated                                                     0  0 0  0
##   affirmative                                                    0  0 0  0
##   alternate                                                      0  0 0  0
##   approach                                                       0  0 0  0
##   architect                                                      0  0 0  0
##   arrest                                                         0  0 0  0
##   aspirant                                                       0  0 0  0
##   assesses                                                       0  0 0  0
##   assets                                                         0  0 0  0
##   assignments                                                    0  0 0  0
##   basic                                                          0  0 0  0
##   cases                                                          0  0 0  0
##   centre                                                         0  0 0  0
##   certifications                                                 0  0 0  0
##   chain                                                          0  0 0  0
##   conceptual                                                     0  0 0  0
##   conceptualize                                                  0  0 0  0
##   conducted                                                      0  0 0  0
##   considered                                                     0  0 0  0
##   contribution                                                   0  0 0  0
##   corner                                                         0  0 0  0
##   delivers                                                       0  0 0  0
##   determine                                                      0  0 0  0
##   disclose                                                       0  0 0  0
##   eligible                                                       0  0 0  0
##   employed                                                       0  0 0  0
##   enhancing                                                      0  0 0  0
##   executive                                                      0  0 0  0
##   expunged                                                       0  0 0  0
##   factors                                                        0  0 0  0
##   femalesminoritiesveteransindividuals                           0  0 0  0
##   firsttomarket                                                  0  0 0  0
##   flink                                                          0  0 0  0
##   follows                                                        0  0 0  0
##   fulfilment                                                     0  0 0  0
##   fundamental                                                    0  0 0  0
##   fuzzy                                                          0  0 0  0
##   globe                                                          0  0 0  0
##   handling                                                       0  0 0  0
##   human                                                          0  0 0  0
##   identifies                                                     0  0 0  0
##   indicators                                                     0  0 0  0
##   industrialorganizational                                       0  0 0  0
##   interacts                                                      0  0 0  0
##   intermediate                                                   0  0 0  0
##   iot                                                            0  0 0  0
##   julia                                                          0  0 0  0
##   labs                                                           0  0 0  0
##   logic                                                          0  0 0  0
##   machinelearning                                                0  0 0  0
##   mark                                                           0  0 0  0
##   markov                                                         0  0 0  0
##   matters                                                        0  0 0  0
##   men                                                            0  0 0  0
##   mobility                                                       0  0 0  0
##   nonparametric                                                  0  0 0  0
##   obligated                                                      0  0 0  0
##   outcome                                                        0  0 0  0
##   pivot                                                          0  0 0  0
##   projectbased                                                   0  0 0  0
##   records                                                        0  0 0  0
##   redefine                                                       0  0 0  0
##   reliability                                                    0  0 0  0
##   robotics                                                       0  0 0  0
##   scheduling                                                     0  0 0  0
##   sealed                                                         0  0 0  0
##   shall                                                          0  0 0  0
##   situations                                                     0  0 0  0
##   sized                                                          0  0 0  0
##   solves                                                         0  0 0  0
##   source                                                         0  0 0  0
##   stochastic                                                     0  0 0  0
##   supply                                                         0  0 0  0
##   term                                                           0  0 0  0
##   variable                                                       0  0 0  0
##   versed                                                         0  0 0  0
##   women                                                          0  0 0  0
##   01162019                                                       0  0 0  0
##   aaid                                                           0  0 0  0
##   analyticsleading                                               0  0 0  0
##   anomaly                                                        0  0 0  0
##   architecting                                                   0  0 0  0
##   arima                                                          0  0 0  0
##   arma                                                           0  0 0  0
##   articulating                                                   0  0 0  0
##   assessments                                                    0  0 0  0
##   carlo                                                          0  0 0  0
##   categorical                                                    0  0 0  0
##   categorize                                                     0  0 0  0
##   civil                                                          0  0 0  0
##   collect                                                        0  0 0  0
##   comprised                                                      0  0 0  0
##   conference                                                     0  0 0  0
##   consistently                                                   0  0 0  0
##   correlation                                                    0  0 0  0
##   crossdomain                                                    0  0 0  0
##   crossprogram                                                   0  0 0  0
##   dimension                                                      0  0 0  0
##   dod                                                            0  0 0  0
##   eight                                                          0  0 0  0
##   emphasis                                                       0  0 0  0
##   engrg                                                          0  0 0  0
##   followup                                                       0  0 0  0
##   forming                                                        0  0 0  0
##   frontend                                                       0  0 0  0
##   implications                                                   0  0 0  0
##   issue                                                          0  0 0  0
##   languagedevelopment                                            0  0 0  0
##   monte                                                          0  0 0  0
##   multidisciplinary                                              0  0 0  0
##   narx                                                           0  0 0  0
##   papersarticles                                                 0  0 0  0
##   preference                                                     0  0 0  0
##   programmatic                                                   0  0 0  0
##   published                                                      0  0 0  0
##   reduction                                                      0  0 0  0
##   relate                                                         0  0 0  0
##   resulting                                                      0  0 0  0
##   risk                                                           0  0 0  0
##   sci                                                            0  0 0  0
##   scipy                                                          0  0 0  0
##   significant                                                    0  0 0  0
##   specialists                                                    0  0 0  0
##   steward                                                        0  0 0  0
##   summarize                                                      0  0 0  0
##   tailoring                                                      0  0 0  0
##   threats                                                        0  0 0  0
##   toolset                                                        0  0 0  0
##   twelve                                                         0  0 0  0
##   vehicle                                                        0  0 0  0
##   adobe                                                          0  0 0  0
##   affinities                                                     0  0 0  0
##   asks                                                           0  0 0  0
##   audience                                                       0  0 0  0
##   audiences                                                      0  0 0  0
##   bigpicture                                                     0  0 0  0
##   bluekai                                                        0  0 0  0
##   bottom                                                         0  0 0  0
##   businesssavvy                                                  0  0 0  0
##   collaboratively                                                0  0 0  0
##   confidently                                                    0  0 0  0
##   conscientious                                                  0  0 0  0
##   controlled                                                     0  0 0  0
##   depth                                                          0  0 0  0
##   disney                                                         0  0 0  0
##   distill                                                        0  0 0  0
##   dmp                                                            0  0 0  0
##   dmps                                                           0  0 0  0
##   dtci                                                           0  0 0  0
##   examining                                                      0  0 0  0
##   handsonexecution                                               0  0 0  0
##   hivehadoopcloud                                                0  0 0  0
##   hypotheses                                                     0  0 0  0
##   intellectually                                                 0  0 0  0
##   international                                                  0  0 0  0
##   lookalike                                                      0  0 0  0
##   mathstatistics                                                 0  0 0  0
##   mba                                                            0  0 0  0
##   measurable                                                     0  0 0  0
##   monetization                                                   0  0 0  0
##   multichannel                                                   0  0 0  0
##                                                                 Docs
## Terms                                                             9 10 11
##   125m                                                            0  0  0
##   401k                                                            0  0  1
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      0  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  0  0
##   analysis                                                        3  3  0
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            1  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  0
##   base                                                            0  0  0
##   become                                                          0  0  0
##   benefits                                                        0  0  1
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        0  0  1
##   business                                                        3  3  7
##   calculate                                                       0  0  0
##   can                                                             0  0  0
##   candidate                                                       0  0  1
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            1  0  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  1  0
##   communicator                                                    0  0  0
##   companies                                                       0  0  0
##   company                                                         0  0  1
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  0  0
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       1  0  0
##   data                                                           14  8 20
##   dataset                                                         0  0  0
##   deep                                                            0  0  1
##   delivering                                                      1  0  0
##   dental                                                          0  0  1
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  0  0
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                      2  9  4
##   explain                                                         0  0  0
##   feature                                                         0  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  0  2
##   functions                                                       0  1  0
##   general                                                         0  1  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  0
##   great                                                           0  0  1
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  0
##   identifying                                                     1  0  0
##   includes                                                        0  0  0
##   including                                                       0  2  1
##   increased                                                       0  0  0
##   industry                                                        0  1  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            1  0  0
##   language                                                        0  0  1
##   largest                                                         0  0  0
##   learn                                                           1  0  0
##   learning                                                        0  0  3
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        0  0  0
##   lidia                                                           0  0  0
##   like                                                            0  2  1
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  0  0
##   machine                                                         0  0  3
##   maintainable                                                    0  0  0
##   make                                                            0  0  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      2  0  0
##   measured                                                        0  0  0
##   medical                                                         0  0  1
##   metrics                                                         0  0  0
##   mission                                                         0  0  0
##   mobile                                                          0  0  1
##   model                                                           0  0  1
##   models                                                          0  5  7
##   movement                                                        0  0  0
##   need                                                            0  0  0
##   next                                                            0  0  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             0  0  0
##   opportunities                                                   0  0  0
##   optimization                                                    0  1  2
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  0
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          0  0  0
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  1
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         1  0  0
##   processing                                                      0  0  1
##   product                                                         5  0  3
##   prototype                                                       0  0  0
##   provide                                                         0  0  0
##   python                                                          1  3  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       1  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  0
##   sample                                                          0  0  0
##   science                                                         1  0  7
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          1  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             3  2  1
##   startup                                                         0  0  0
##   statistical                                                     0  5  4
##   strategies                                                      1  0  0
##   success                                                         0  0  0
##   systems                                                         0  0  1
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            1  1  1
##   teams                                                           0  0  1
##   tech                                                            0  0  0
##   technology                                                      0  0  0
##   tests                                                           0  0  0
##   throughout                                                      0  0  1
##   time                                                            0  1  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        1  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   1  0  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  1  1
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  1
##   visualizations                                                  0  0  2
##   way                                                             0  0  0
##   web                                                             0  0  1
##   whatever                                                        0  0  0
##   within                                                          1  0  0
##   words                                                           0  0  0
##   work                                                            2  5  2
##   worked                                                          0  0  0
##   works                                                           1  0  0
##   yan                                                             0  0  0
##   years                                                           1  2  1
##   360b                                                            0  0  0
##   algorithms                                                      0  0  2
##   analytics                                                       0  1  1
##   andor                                                           0  0  0
##   bachelor                                                        1  0  0
##   basis                                                           0  0  0
##   behavior                                                        0  1  0
##   believe                                                         0  0  0
##   big                                                             0  1  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  1  0
##   cloud                                                           0  0  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         1  1  1
##   computation                                                     0  0  0
##   content                                                         0  0  0
##   conversion                                                      0  0  0
##   critical                                                        0  0  0
##   customer                                                        0  0  3
##   database                                                        0  0  0
##   decided                                                         0  0  0
##   decisions                                                       1  0  0
##   degree                                                          1  1  1
##   deliver                                                         0  0  0
##   design                                                          0  0  0
##   discovery                                                       0  0  0
##   distributed                                                     0  0  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  0  0
##   employment                                                      0  0  0
##   engine                                                          0  0  0
##   environment                                                     2  1  0
##   equal                                                           0  0  0
##   field                                                           1  0  1
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          0  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  1  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  0  0
##   interesting                                                     0  0  0
##   internet                                                        0  1  0
##   javascala                                                       0  0  0
##   job                                                             0  0  0
##   join                                                            0  0  0
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         0  0  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  0
##   opportunity                                                     0  0  1
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  0  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  2
##   predictive                                                      0  2  0
##   preferably                                                      0  0  0
##   production                                                      2  0  0
##   products                                                        0  1  1
##   programming                                                     0  2  0
##   publisher                                                       0  0  0
##   qualifications                                                  1  0  0
##   quantitative                                                    2  1  2
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  2
##   recommendations                                                 0  0  0
##   related                                                         0  0  0
##   requirements                                                    1  1  1
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       0  1  1
##   senior                                                          0  1  1
##   serving                                                         0  0  0
##   set                                                             0  0  0
##   sites                                                           0  0  0
##   solutions                                                       0  2  1
##   something                                                       0  0  0
##   spark                                                           0  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         1  0  0
##   streaming                                                       0  0  0
##   support                                                         0  2  1
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  1  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           0  0  2
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           1  0  0
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0  0  0
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        1  3  0
##   age                                                             0  0  0
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        1  1  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  0
##   application                                                     0  0  0
##   applications                                                    0  0  1
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  1  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  0
##   capgemini                                                       0  0  0
##   changing                                                        0  0  0
##   characteristic                                                  0  0  0
##   click                                                           0  0  0
##   clients                                                         0  0  0
##   collaborate                                                     0  0  0
##   comes                                                           0  0  0
##   computer                                                        0  0  1
##   consider                                                        0  0  0
##   consideration                                                   0  0  0
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  0
##   delivery                                                        0  0  1
##   demands                                                         0  0  0
##   deploy                                                          0  0  1
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  0
##   develop                                                         1  2  1
##   developer                                                       0  0  0
##   developing                                                      0  1  0
##   development                                                     0  1  1
##   digital                                                         0  1  0
##   disabilities                                                    0  0  0
##   disability                                                      0  0  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          2  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     0  0  1
##   enhance                                                         0  0  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       0  0  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  1  0
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          1  0  0
##   gathering                                                       0  0  0
##   gender                                                          0  0  0
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  0  2
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  1  0
##   include                                                         0  2  1
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          1  0  0
##   information                                                     1  2  0
##   innovation                                                      0  0  0
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  0
##   junior                                                          0  0  0
##   knowledge                                                       1  2  1
##   landscape                                                       0  0  0
##   languages                                                       0  0  0
##   large                                                           0  1  0
##   law                                                             0  0  0
##   leader                                                          0  1  0
##   leadership                                                      0  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  1
##   management                                                      1  1  0
##   manipulation                                                    0  1  1
##   manner                                                          1  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          1  0  0
##   may                                                             0  0  0
##   meetings                                                        0  0  0
##   members                                                         0  0  1
##   mental                                                          0  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         1  0  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  1  0
##   multicultural                                                   0  0  0
##   must                                                            0  1  0
##   national                                                        0  0  0
##   necessary                                                       0  0  0
##   new                                                             2  0  0
##   now                                                             0  0  0
##   operations                                                      0  1  1
##   organizations                                                   0  0  0
##   orientation                                                     0  0  0
##   origin                                                          0  0  0
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        0  0  0
##   platforms                                                       0  0  1
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        1  0  0
##   prioritizing                                                    1  0  0
##   processes                                                       0  0  0
##   proficiency                                                     1  0  0
##   proficient                                                      0  0  0
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  0
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        1  0  2
##   protected                                                       0  0  0
##   provided                                                        0  0  0
##   qualified                                                       0  0  0
##   queuing                                                         0  0  0
##   race                                                            0  0  0
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  0  0
##   referenced                                                      0  0  0
##   regard                                                          0  0  0
##   release                                                         0  0  0
##   relevant                                                        0  1  1
##   religion                                                        0  0  0
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        1  0  0
##   require                                                         1  0  0
##   required                                                        0  1  0
##   requirement                                                     0  0  0
##   responsibilities                                                1  1  0
##   responsible                                                     0  0  0
##   results                                                         0  1  0
##   revenues                                                        0  0  0
##   review                                                          2  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            0  1  1
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        0  2  2
##   sets                                                            0  1  1
##   sexual                                                          0  0  0
##   shiny                                                           0  0  1
##   skills                                                          1  1  0
##   software                                                        0  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  0  0
##   strategy                                                        0  0  0
##   strong                                                          3  1  0
##   supervise                                                       0  0  0
##   technical                                                       1  0  0
##   techniques                                                      0  1  1
##   testing                                                         0  0  0
##   tools                                                           1  2  0
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  0
##   valid                                                           0  0  0
##   various                                                         0  2  0
##   varying                                                         0  0  0
##   veteran                                                         0  0  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  0  0
##   written                                                         1  1  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         3  1  2
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         0  0  0
##   analytical                                                      1  1  0
##   analyze                                                         2  1  2
##   arise                                                           0  0  0
##   attention                                                       1  1  0
##   attribution                                                     0  0  0
##   best                                                            0  0  1
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          1  0  0
##   detail                                                          1  1  0
##   developers                                                      0  0  0
##   direct                                                          0  0  1
##   efficiency                                                      0  0  0
##   excel                                                           1  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  0  0
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       1  0  0
##   improve                                                         0  0  0
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  0  1
##   intermedia                                                      0  0  0
##   internal                                                        0  0  0
##   investments                                                     0  0  0
##   manager                                                         1  0  0
##   market                                                          0  0  0
##   marketing                                                       0  0  0
##   master                                                          0  0  0
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           1  0  0
##   part                                                            0  0  1
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  1
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      1  0  0
##   problem                                                         0  0  0
##   procedures                                                      0  1  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         1  0  0
##   reliably                                                        0  0  0
##   reports                                                         1  0  0
##   research                                                        0  1  1
##   resources                                                       0  0  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         0  0  1
##   service                                                         0  0  0
##   solving                                                         0  0  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         1  0  1
##   technologies                                                    1  0  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          3  1  0
##   understand                                                      1  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        0  0  2
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  0  1
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          1  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       0  0  0
##   among                                                           0  0  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           1  0  0
##   architectures                                                   0  0  0
##   areas                                                           0  0  1
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      0  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  0
##   clandestine                                                     0  0  0
##   classification                                                  0  0  1
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  0  0
##   color                                                           0  0  0
##   comfort                                                         0  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  0  0
##   communication                                                   0  1  0
##   communications                                                  0  3  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     0  1  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         1  1  1
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    1  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  0
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  0
##   engineers                                                       0  0  0
##   every                                                           0  0  1
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  1
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     0  1  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        0  0  0
##   highly                                                          1  0  0
##   ideas                                                           0  0  1
##   identity                                                        0  0  0
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  0  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             0  0  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  0
##   lead                                                            0  0  2
##   leaders                                                         0  0  1
##   let                                                             0  0  0
##   libraries                                                       0  0  0
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  1
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  0
##   minimum                                                         1  0  0
##   modern                                                          0  0  2
##   much                                                            0  1  0
##   multiple                                                        0  0  1
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         0  0  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  0  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         0  0  0
##   passionate                                                      0  0  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  0  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     1  0  0
##   preferred                                                       1  0  1
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  0
##   realworld                                                       0  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      0  3  1
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        0  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  0  0
##   scientists                                                      1  0  0
##   scikitlearn                                                     0  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           1  0  0
##   share                                                           0  0  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         0  0  0
##   small                                                           0  1  0
##   solid                                                           0  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   0  0  0
##   states                                                          0  1  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      0  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  0  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            2  1  1
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         0  0  0
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         1  0  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        2  0  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         1  0  0
##   rely                                                            0  1  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      0  1  2
##   structured                                                      0  1  0
##   text                                                            0  0  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      2  1  0
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         1  0  0
##   cgi                                                             0  0  0
##   change                                                          0  1  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         1  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  2
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  0  1
##   improving                                                       0  0  0
##   interactive                                                     0  0  1
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     0  0  1
##   mining                                                          0  1  0
##   modeling                                                        0  1  2
##   monitor                                                         0  2  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  1
##   perform                                                         0  1  1
##   physics                                                         0  0  1
##   please                                                          0  0  0
##   practiced                                                       0  0  0
##   present                                                         1  1  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             1  0  0
##   sas                                                             0  3  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      1  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  0  1
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             1  0  0
##   accuracy                                                        1  0  0
##   adhoc                                                           1  0  0
##   advancements                                                    1  0  0
##   aligned                                                         1  0  0
##   amazon                                                          1  0  0
##   ambiguous                                                       1  0  0
##   aptitude                                                        2  0  0
##   around                                                          1  0  0
##   assigned                                                        1  0  0
##   assurance                                                       1  0  0
##   atmosphere                                                      1  0  0
##   attain                                                          1  0  0
##   azure                                                           1  0  0
##   clean                                                           1  1  1
##   closely                                                         1  0  0
##   concise                                                         1  0  0
##   consult                                                         1  0  0
##   conveying                                                       1  0  0
##   creation                                                        1  0  0
##   custom                                                          1  0  0
##   databases                                                       1  1  1
##   datadriven                                                      1  0  0
##   decision                                                        1  1  0
##   department                                                      1  0  0
##   derive                                                          1  0  0
##   dev                                                             2  0  0
##   ensure                                                          1  0  0
##   evaluate                                                        1  0  0
##   excellent                                                       1  1  0
##   extracted                                                       1  0  0
##   extracting                                                      1  0  0
##   fastpaced                                                       1  0  0
##   focus                                                           1  0  0
##   fulfill                                                         1  0  0
##   goals                                                           1  0  0
##   heavy                                                           1  0  0
##   highvisibility                                                  1  0  0
##   independently                                                   1  1  0
##   informing                                                       1  0  0
##   infrastructure                                                  2  0  0
##   interpersonal                                                   1  0  0
##   look                                                            1  0  0
##   makes                                                           1  0  0
##   making                                                          1  0  0
##   manipulating                                                    1  0  0
##   mindbody                                                        3  0  0
##   mindset                                                         1  0  0
##   needed                                                          1  0  0
##   numbers                                                         1  0  0
##   organized                                                       1  0  0
##   participate                                                     1  0  0
##   performing                                                      1  1  0
##   principal                                                       1  0  0
##   prod                                                            2  0  0
##   promoting                                                       1  0  0
##   pte                                                             1  0  0
##   quality                                                         1  1  0
##   quantifying                                                     1  0  0
##   redshift                                                        1  0  0
##   rest                                                            1  0  0
##   salesforce                                                      1  0  0
##   schemas                                                         1  0  0
##   scripts                                                         1  0  0
##   sense                                                           1  0  0
##   smes                                                            1  0  0
##   ssis                                                            1  0  0
##   startuplike                                                     1  0  0
##   subject                                                         1  0  0
##   tasks                                                           1  0  0
##   units                                                           1  0  0
##   usage                                                           3  0  0
##   visual                                                          1  0  0
##   write                                                           1  0  0
##   100                                                             0  1  0
##   3rd                                                             0  1  0
##   aggregation                                                     0  1  0
##   along                                                           0  1  0
##   analyses                                                        0  3  1
##   bayesian                                                        0  1  1
##   boosting                                                        0  1  0
##   bootstrap                                                       0  1  0
##   businesses                                                      0  1  0
##   california                                                      0  1  0
##   claritas                                                        0  1  0
##   communities                                                     0  1  0
##   complete                                                        0  1  0
##   consumer                                                        0  1  1
##   copper                                                          0  1  0
##   customers                                                       0  1  0
##   demand                                                          0  1  0
##   demographic                                                     0  1  0
##   descriptive                                                     0  1  0
##   desirable                                                       0  1  0
##   directly                                                        0  1  0
##   discipline                                                      0  1  0
##   document                                                        0  1  0
##   dvr                                                             0  1  0
##   econometrics                                                    0  1  0
##   effectiveness                                                   0  1  0
##   emerging                                                        0  1  0
##   enhanced                                                        0  1  0
##   enterprise                                                      0  1  0
##   evaluation                                                      0  1  0
##   fiberoptic                                                      0  1  0
##   fios                                                            0  1  0
##   firmagraphic                                                    0  1  0
##   forecasting                                                     0  1  0
##   formats                                                         0  1  0
##   fort                                                            0  1  0
##   frontier                                                        0  8  0
##   ftr                                                             0  1  0
##   gather                                                          0  1  0
##   heavily                                                         0  1  0
##   highspeed                                                       0  1  0
##   home                                                            0  1  0
##   instant                                                         0  1  0
##   instructions                                                    0  1  0
##   irving                                                          0  1  0
##   linear                                                          0  1  0
##   locale                                                          0  1  0
##   location                                                        0  1  0
##   logistic                                                        0  1  0
##   machines                                                        0  1  0
##   manipulate                                                      0  1  0
##   medium                                                          0  1  0
##   methodologies                                                   0  1  0
##   multivariate                                                    0  1  0
##   nasdaq                                                          0  1  0
##   navigate                                                        0  1  0
##   networks                                                        0  1  0
##   newly                                                           0  1  0
##   oaks                                                            0  1  0
##   offerings                                                       0  1  0
##   offers                                                          0  2  0
##   oracle                                                          0  1  0
##   oral                                                            0  1  0
##   partnering                                                      0  1  0
##   party                                                           0  1  0
##   percent                                                         0  1  0
##   picture                                                         0  1  0
##   protection                                                      0  1  0
##   providing                                                       0  1  0
##   rdbms                                                           0  1  0
##   regularly                                                       0  1  0
##   relational                                                      0  1  0
##   residential                                                     0  1  0
##   rural                                                           0  1  0
##   scenarios                                                       0  1  0
##   search                                                          0  1  0
##   secure                                                          0  1  0
##   series                                                          0  1  0
##   server                                                          0  1  0
##   servers                                                         0  1  0
##   skillsrequirements                                              0  1  0
##   someall                                                         0  1  0
##   sources                                                         0  2  1
##   southern                                                        0  1  0
##   specific                                                        0  1  0
##   ssms                                                            0  1  0
##   structures                                                      0  1  0
##   suburban                                                        0  1  0
##   suite                                                           0  1  0
##   tampa                                                           0  1  0
##   thousand                                                        0  1  0
##   total                                                           0  1  0
##   translate                                                       0  1  0
##   trees                                                           0  1  0
##   types                                                           0  1  0
##   urban                                                           0  1  0
##   vantage                                                         0  1  0
##   variety                                                         0  2  0
##   vector                                                          0  1  0
##   video                                                           0  3  0
##   voice                                                           0  1  0
##   wayne                                                           0  1  0
##   wwwfrontiercom                                                  0  1  0
##   addons                                                          0  0  1
##   amazing                                                         0  0  1
##   bonus                                                           0  0  1
##   bring                                                           0  0  1
##   catered                                                         0  0  1
##   clear                                                           0  0  1
##   clustering                                                      0  0  1
##   combine                                                         0  0  1
##   constrained                                                     0  0  1
##   continuous                                                      0  0  1
##   convey                                                          0  0  1
##   credit                                                          0  0  1
##   date                                                            0  0  1
##   decisionmaking                                                  0  0  1
##   dedicated                                                       0  0  1
##   deploying                                                       0  0  2
##   drinks                                                          0  0  1
##   economics                                                       0  0  1
##   either                                                          0  0  1
##   events                                                          0  0  1
##   executives                                                      0  0  1
##   existing                                                        0  0  1
##   fabfitfun                                                       0  0  2
##   fastgrowing                                                     0  0  1
##   free                                                            0  0  1
##   fsa                                                             0  0  1
##   get                                                             0  0  1
##   hierarchical                                                    0  0  1
##   highprofile                                                     0  0  1
##   highvolume                                                      0  0  1
##   holistic                                                        0  0  1
##   ideal                                                           0  0  1
##   inference                                                       0  0  1
##   kitchen                                                         0  0  1
##   lifetime                                                        0  0  2
##   looker                                                          0  0  1
##   maintaining                                                     0  0  1
##   masters                                                         0  0  1
##   meals                                                           0  0  1
##   natural                                                         0  0  1
##   nlp                                                             0  0  1
##   optimize                                                        0  0  1
##   optimizing                                                      0  0  1
##   phd                                                             0  0  2
##   points                                                          0  0  1
##   proven                                                          0  0  1
##   psychology                                                      0  0  1
##   pto                                                             0  0  1
##   quarterly                                                       0  0  1
##   recommender                                                     0  0  1
##   retention                                                       0  0  1
##   rich                                                            0  0  1
##   segmentation                                                    0  0  2
##   snacks                                                          0  0  1
##   start                                                           0  0  1
##   stocked                                                         0  0  1
##   store                                                           0  0  1
##   subscription                                                    0  0  2
##   surveys                                                         0  0  1
##   tackle                                                          0  0  1
##   take                                                            0  0  1
##   transactions                                                    0  0  1
##   tune                                                            0  0  1
##   unit                                                            0  0  1
##   unlimited                                                       0  0  1
##   used                                                            0  0  1
##   visualization                                                   0  0  2
##   youll                                                           0  0  3
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  0  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  0  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        0  0  0
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  0  0
##   final                                                           0  0  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  0  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  0
##   automated                                                       0  0  0
##   aws                                                             0  0  0
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       0  0  0
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            0  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  0  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          0  0  0
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  0
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  0  0
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            12 13 14
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      0  0  1
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  1  0
##   analysis                                                        2  0  4
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  1
##   background                                                      0  1  1
##   base                                                            0  0  0
##   become                                                          0  0  1
##   benefits                                                        0  0  1
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        0  0  2
##   business                                                        3  0  3
##   calculate                                                       0  0  0
##   can                                                             0  0  2
##   candidate                                                       0  1  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  1
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            2  0  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     1  0  1
##   communicator                                                    0  0  0
##   companies                                                       0  0  0
##   company                                                         1  0  1
##   compelling                                                      0  0  0
##   competitive                                                     0  0  2
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  1  2
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                           13  2 13
##   dataset                                                         0  0  0
##   deep                                                            0  0  0
##   delivering                                                      0  0  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  0  1
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                      3  0  9
##   explain                                                         1  0  0
##   feature                                                         4  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  0  0
##   functions                                                       0  0  3
##   general                                                         0  1  1
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  1
##   identifying                                                     0  0  0
##   includes                                                        0  0  0
##   including                                                       0  0  1
##   increased                                                       0  0  1
##   industry                                                        0  0  1
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  1  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        1  0  1
##   largest                                                         0  0  0
##   learn                                                           0  0  0
##   learning                                                       11  0  5
##   led                                                             0  0  0
##   level                                                           0  0  1
##   leverage                                                        0  0  0
##   lidia                                                           0  0  0
##   like                                                            1  0  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  0  0
##   machine                                                        11  0  5
##   maintainable                                                    0  0  0
##   make                                                            0  0  2
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  1
##   meaningful                                                      0  0  1
##   measured                                                        0  0  0
##   medical                                                         0  0  1
##   metrics                                                         0  0  0
##   mission                                                         1  0  0
##   mobile                                                          0  0  0
##   model                                                           1  0  1
##   models                                                          1  0  4
##   movement                                                        0  0  0
##   need                                                            0  0  1
##   next                                                            0  0  0
##   nice                                                            0  0  1
##   ondemand                                                        0  0  0
##   one                                                             0  0  1
##   opportunities                                                   0  1  1
##   optimization                                                    0  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  4
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          0  1  2
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  1
##   point                                                           0  0  0
##   potential                                                       1  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      0  0  1
##   product                                                         0  0  1
##   prototype                                                       2  0  0
##   provide                                                         1  0  0
##   python                                                          1  0  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  1
##   relationships                                                   0  0  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  1  0
##   sales                                                           0  0  0
##   sample                                                          0  0  0
##   science                                                         7  0  4
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             1  0  1
##   startup                                                         0  0  0
##   statistical                                                     2  0  4
##   strategies                                                      0  0  0
##   success                                                         0  0  0
##   systems                                                         1  0  4
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            4  3  3
##   teams                                                           0  0  0
##   tech                                                            0  1  0
##   technology                                                      0  0  1
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  0  2
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        1  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  1
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   0  0  1
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  1  0
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  0  0  0
##   way                                                             1  0  0
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          0  0  2
##   words                                                           0  0  0
##   work                                                            4  2  4
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           2  0  3
##   360b                                                            0  0  0
##   algorithms                                                      5  0  0
##   analytics                                                       3  0  0
##   andor                                                           0  0  0
##   bachelor                                                        0  0  1
##   basis                                                           0  0  0
##   behavior                                                        0  0  0
##   believe                                                         0  0  0
##   big                                                             3  0  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  0  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         0  0  0
##   computation                                                     0  0  0
##   content                                                         0  0  0
##   conversion                                                      0  0  0
##   critical                                                        0  0  0
##   customer                                                        0  0  0
##   database                                                        0  0  2
##   decided                                                         0  0  0
##   decisions                                                       0  0  0
##   degree                                                          0  0  1
##   deliver                                                         0  0  0
##   design                                                          4  0  1
##   discovery                                                       0  0  0
##   distributed                                                     1  0  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  1
##   employer                                                        0  1  0
##   employment                                                      0  1  0
##   engine                                                          0  0  0
##   environment                                                     0  0  1
##   equal                                                           0  1  0
##   field                                                           1  0  1
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          0  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           1  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       2  0  1
##   inclusive                                                       0  1  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  1  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             0  0  3
##   join                                                            0  1  0
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         0  0  1
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  2  0
##   opportunity                                                     0  0  0
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  0  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      1  0  1
##   preferably                                                      0  0  0
##   production                                                      0  0  2
##   products                                                        1  0  0
##   programming                                                     1  0  0
##   publisher                                                       0  0  0
##   qualifications                                                  1  0  0
##   quantitative                                                    0  0  0
##   query                                                           1  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 0  0  0
##   related                                                         1  0  1
##   requirements                                                    0  0  2
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       3  0  0
##   senior                                                          0  0  0
##   serving                                                         0  0  1
##   set                                                             0  0  1
##   sites                                                           0  0  0
##   solutions                                                       6  0  2
##   something                                                       0  0  0
##   spark                                                           0  0  1
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  1
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         1  0  0
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  0  0
##   usa                                                             0  0  0
##   users                                                           1  3  0
##   value                                                           0  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           0  0  1
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  1
##   acquire                                                         0  0  0
##   across                                                          1  0  0
##   address                                                         0  0  1
##   adherence                                                       0  0  0
##   advanced                                                        0  0  3
##   age                                                             0  1  0
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  1  0
##   application                                                     0  0  2
##   applications                                                    0  2  0
##   apps                                                            0  3  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  0
##   capgemini                                                       0  0  0
##   changing                                                        0  0  0
##   characteristic                                                  0  0  0
##   click                                                           0  0  0
##   clients                                                         0  0  0
##   collaborate                                                     0  1  0
##   comes                                                           0  0  0
##   computer                                                        1  0  1
##   consider                                                        0  0  0
##   consideration                                                   0  1  0
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  1
##   delivery                                                        0  0  0
##   demands                                                         0  0  1
##   deploy                                                          0  0  1
##   deployment                                                      1  0  0
##   description                                                     0  0  1
##   designing                                                       1  0  0
##   develop                                                         0  0  1
##   developer                                                       0  0  0
##   developing                                                      0  0  0
##   development                                                     0  0  0
##   digital                                                         0  0  0
##   disabilities                                                    0  0  1
##   disability                                                      0  1  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  1
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     2  0  3
##   enhance                                                         0  0  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       1  0  0
##   feedback                                                        1  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  1
##   following                                                       0  0  0
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          0  0  1
##   gathering                                                       0  0  0
##   gender                                                          0  1  0
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            1  0  4
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  0
##   include                                                         0  2  0
##   individuals                                                     0  1  1
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     0  0  1
##   innovation                                                      0  1  1
##   intended                                                        0  0  1
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  0
##   junior                                                          0  0  0
##   knowledge                                                       1  0  1
##   landscape                                                       0  0  0
##   languages                                                       1  0  0
##   large                                                           0  1  2
##   law                                                             0  0  0
##   leader                                                          0  0  0
##   leadership                                                      0  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  0
##   management                                                      0  0  3
##   manipulation                                                    0  0  0
##   manner                                                          0  0  1
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          0  0  0
##   may                                                             0  0  3
##   meetings                                                        0  0  0
##   members                                                         3  0  0
##   mental                                                          0  3  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  1
##   methods                                                         0  0  1
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  3
##   national                                                        0  1  0
##   necessary                                                       0  0  0
##   new                                                             0  1  1
##   now                                                             1  0  0
##   operations                                                      0  0  0
##   organizations                                                   0  0  0
##   orientation                                                     0  1  0
##   origin                                                          0  1  0
##   performed                                                       0  0  1
##   personnel                                                       0  0  0
##   physical                                                        0  0  2
##   platforms                                                       0  0  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  1  3
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     0  0  0
##   proficient                                                      0  0  1
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  1
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        0  0  0
##   protected                                                       0  2  0
##   provided                                                        0  0  0
##   qualified                                                       0  1  0
##   queuing                                                         0  0  0
##   race                                                            0  1  0
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  1
##   receive                                                         0  1  0
##   referenced                                                      0  0  0
##   regard                                                          0  1  0
##   release                                                         0  0  0
##   relevant                                                        0  0  0
##   religion                                                        0  1  0
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  0  0
##   require                                                         0  0  0
##   required                                                        0  1  1
##   requirement                                                     0  0  0
##   responsibilities                                                1  1  1
##   responsible                                                     0  0  0
##   results                                                         0  0  0
##   revenues                                                        0  0  0
##   review                                                          1  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            2  0  0
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        0  0  1
##   sets                                                            1  0  0
##   sexual                                                          0  1  0
##   shiny                                                           0  0  0
##   skills                                                          0  0  1
##   software                                                        0  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  2  0
##   strategy                                                        0  0  1
##   strong                                                          0  0  1
##   supervise                                                       0  0  0
##   technical                                                       0  0  0
##   techniques                                                      0  0  1
##   testing                                                         1  0  0
##   tools                                                           0  0  0
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  0
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         0  1  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  1  0
##   workplace                                                       0  0  0
##   written                                                         0  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         0  0  2
##   advertising                                                     0  0  0
##   always                                                          1  0  0
##   analyst                                                         0  0  0
##   analytical                                                      0  0  1
##   analyze                                                         0  0  0
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  0  0
##   best                                                            0  0  0
##   better                                                          1  0  1
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  1
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  0
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       1  0  0
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  0  0
##   improve                                                         0  0  3
##   innovator                                                       1  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  0  0
##   intermedia                                                      0  0  0
##   internal                                                        0  0  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  0  0
##   marketing                                                       0  0  0
##   master                                                          0  0  1
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           0  0  0
##   part                                                            0  1  1
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         1  0  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  0  0
##   research                                                        0  1  0
##   resources                                                       0  0  2
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         1  0  0
##   service                                                         0  0  0
##   solving                                                         1  0  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  0  0
##   technologies                                                    0  0  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  0
##   understand                                                      0  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        2  0  0
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  0  0
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          0  0  1
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  1  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       1  0  0
##   among                                                           0  0  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           1  0  2
##   architectures                                                   0  0  0
##   areas                                                           0  0  0
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          1  0  0
##   challenges                                                      0  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  0
##   clandestine                                                     0  0  0
##   classification                                                  0  0  1
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  0  0
##   color                                                           0  1  0
##   comfort                                                         0  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  0  0
##   communication                                                   0  0  0
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  1
##   demonstrated                                                    0  0  0
##   described                                                       0  0  1
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  0
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  0
##   engineers                                                       0  0  0
##   every                                                           0  0  0
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     0  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  4
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         1  0  0
##   handson                                                         0  0  0
##   hardware                                                        0  0  0
##   highly                                                          0  0  0
##   ideas                                                           0  0  0
##   identity                                                        0  1  0
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  0  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             0  0  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  1
##   launch                                                          0  0  0
##   lead                                                            0  0  0
##   leaders                                                         0  0  0
##   let                                                             0  0  1
##   libraries                                                       0  0  1
##   limits                                                          0  0  1
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     1  0  0
##   minds                                                           0  0  0
##   minimum                                                         0  0  1
##   modern                                                          0  0  1
##   much                                                            0  0  0
##   multiple                                                        0  0  0
##   nations                                                         0  0  0
##   nature                                                          0  0  1
##   nearest                                                         0  0  0
##   network                                                         0  0  1
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          1  0  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  1  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         0  0  0
##   passionate                                                      0  0  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  1  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       0  0  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  0
##   realworld                                                       0  0  1
##   reconnaissance                                                  0  0  0
##   regression                                                      0  0  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        1  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  0  0
##   scientists                                                      0  0  0
##   scikitlearn                                                     0  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  0  0
##   share                                                           0  0  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         0  0  0
##   small                                                           1  0  0
##   solid                                                           0  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   0  0  1
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      0  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  1
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  1
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  0  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  1  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            0  0  0
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         0  0  1
##   yes                                                             1  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  2
##   experts                                                         0  0  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        0  0  1
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            1  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      3  0  1
##   structured                                                      0  0  0
##   text                                                            0  1  0
##   theory                                                          0  0  0
##   together                                                        0  0  2
##   uber                                                            0  0  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             1  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  1
##   actionable                                                      0  0  1
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          1  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  2
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            1  0  0
##   continues                                                       0  0  0
##   culture                                                         1  0  1
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  1
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  1
##   exploration                                                     3  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  0  0
##   improving                                                       0  0  1
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     1  0  0
##   mining                                                          0  0  0
##   modeling                                                        0  0  0
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         3  1  2
##   physics                                                         0  0  0
##   please                                                          0  1  0
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  1
##   run                                                             0  0  0
##   sas                                                             0  0  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    1  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          1  0  0
##   tell                                                            0  0  0
##   test                                                            1  0  1
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  1
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  1  0
##   assigned                                                        0  1  1
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  1
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  0
##   datadriven                                                      1  0  0
##   decision                                                        0  0  1
##   department                                                      0  0  0
##   derive                                                          0  0  1
##   dev                                                             0  0  0
##   ensure                                                          0  0  1
##   evaluate                                                        0  1  0
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       1  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  1
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  1
##   making                                                          0  0  3
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      1  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           1  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  1  0
##   tasks                                                           1  0  0
##   units                                                           0  0  0
##   usage                                                           0  1  0
##   visual                                                          1  0  0
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  0  0
##   bayesian                                                        0  0  0
##   boosting                                                        0  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  1  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       0  0  1
##   demand                                                          0  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  2  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  2  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  1
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  0  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  1
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         0  0  0
##   southern                                                        0  0  0
##   specific                                                        0  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  1  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  1  1
##   translate                                                       1  0  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         1  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  1
##   bonus                                                           0  0  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  0  1
##   clustering                                                      0  0  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      1  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  0  0
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  0  0
##   existing                                                        3  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  0  0
##   fsa                                                             0  0  0
##   get                                                             0  0  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  1
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  0  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  0  0
##   phd                                                             1  0  1
##   points                                                          0  0  0
##   proven                                                          0  0  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          1  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  0  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  1
##   unlimited                                                       0  0  0
##   used                                                            0  0  0
##   visualization                                                   0  0  1
##   youll                                                           0  0  0
##   2011                                                            1  0  0
##   achieve                                                         1  0  0
##   advise                                                          1  0  0
##   assess                                                          1  0  0
##   awesome                                                         1  0  0
##   back                                                            1  0  0
##   bathroom                                                        2  0  0
##   beach                                                           1  0  0
##   breathe                                                         1  0  0
##   care                                                            1  0  3
##   challenging                                                     1  0  0
##   close                                                           1  0  0
##   cluster                                                         1  0  0
##   collaboration                                                   2  0  0
##   computational                                                   1  0  0
##   computing                                                       1  0  0
##   concerns                                                        1  0  0
##   dig                                                             1  0  0
##   disrupt                                                         1  0  0
##   donnas                                                          1  0  0
##   dsc                                                             3  0  0
##   egos                                                            1  0  0
##   enthusiasm                                                      1  0  0
##   equivalent                                                      2  0  0
##   establishing                                                    1  0  0
##   estimate                                                        1  0  0
##   excellence                                                      1  1  0
##   expanded                                                        1  0  0
##   experimental                                                    2  0  0
##   feasibility                                                     1  0  0
##   fit                                                             1  0  0
##   fluency                                                         1  0  0
##   folks                                                           1  0  0
##   foundations                                                     1  0  0
##   freshly                                                         1  0  0
##   generate                                                        1  0  0
##   goal                                                            1  0  2
##   hair                                                            1  0  0
##   haircuts                                                        1  0  0
##   happy                                                           1  0  0
##   heart                                                           1  0  0
##   hours                                                           1  1  0
##   humor                                                           1  0  0
##   hypothesis                                                      1  0  0
##   implementation                                                  1  0  0
##   indepth                                                         1  0  0
##   industries                                                      1  0  0
##   jerks                                                           1  0  0
##   just                                                            1  0  0
##   killer                                                          1  0  0
##   later                                                           1  0  0
##   live                                                            1  0  0
##   lunches                                                         1  0  0
##   mathematical                                                    1  0  0
##   millions                                                        2  0  0
##   nontechnical                                                    1  0  0
##   openair                                                         1  0  0
##   owning                                                          1  0  0
##   perks                                                           1  0  0
##   plan                                                            1  0  0
##   planning                                                        1  0  0
##   predict                                                         1  0  0
##   prima                                                           1  0  0
##   principles                                                      1  0  0
##   productionize                                                   2  0  0
##   productionizing                                                 1  0  0
##   prototyping                                                     1  0  0
##   rapidly                                                         2  0  0
##   razors                                                          1  0  0
##   refactor                                                        2  0  0
##   reinventing                                                     1  0  0
##   renovated                                                       1  0  0
##   right                                                           1  0  1
##   roi                                                             2  0  0
##   said                                                            1  0  0
##   selection                                                       3  0  0
##   selflearning                                                    1  0  0
##   shave                                                           1  0  0
##   signals                                                         1  0  0
##   silicon                                                         1  0  0
##   similar                                                         1  0  2
##   skin                                                            1  0  0
##   specializes                                                     1  0  0
##   sprint                                                          1  0  0
##   squad                                                           1  0  0
##   started                                                         1  0  0
##   statements                                                      1  0  1
##   stay                                                            1  0  0
##   storytelling                                                    1  0  0
##   styling                                                         1  0  0
##   summary                                                         1  0  0
##   task                                                            1  0  0
##   teach                                                           1  0  0
##   teammates                                                       1  0  0
##   teamplaying                                                     1  0  0
##   testable                                                        1  0  0
##   think                                                           1  0  0
##   tractable                                                       1  0  0
##   transport                                                       1  0  0
##   tuning                                                          1  0  0
##   workflow                                                        1  0  0
##   wrangling                                                       2  0  0
##   496858                                                          0  1  0
##   675583                                                          0  1  0
##   advancing                                                       0  1  0
##   analyzing                                                       0  1  0
##   attach                                                          0  1  0
##   calmhsa                                                         0  1  0
##   categories                                                      0  1  0
##   certain                                                         0  1  0
##   chatting                                                        0  1  0
##   check                                                           0  1  0
##   conditions                                                      0  1  0
##   confirm                                                         0  1  0
##   contract                                                        0  2  0
##   contractor                                                      0  1  0
##   contractssubcontracts                                           0  1  0
##   covered                                                         0  1  0
##   created                                                         0  1  0
##   dana                                                            0  1  0
##   describing                                                      0  1  0
##   direction                                                       0  1  0
##   everify                                                         0  1  0
##   expected                                                        0  2  0
##   faculty                                                         0  1  0
##   federal                                                         0  2  0
##   final                                                           0  1  0
##   health                                                          0  3  1
##   incumbent                                                       0  4  0
##   inn                                                             0  1  0
##   interact                                                        0  1  0
##   interactions                                                    0  1  0
##   irvine                                                          0  2  0
##   kai                                                             0  1  0
##   listeners                                                       0  1  0
##   managing                                                        0  1  0
##   monthly                                                         0  1  0
##   mukamel                                                         0  1  0
##   multiyear                                                       0  1  0
##   nondiscrimination                                               0  1  0
##   objectives                                                      0  1  0
##   offered                                                         0  1  0
##   professors                                                      0  1  0
##   researchers                                                     0  1  0
##   resume                                                          0  1  0
##   sex                                                             0  1  0
##   statewide                                                       0  1  0
##   study                                                           0  1  0
##   substantial                                                     0  1  0
##   supervision                                                     0  2  0
##   two                                                             0  2  0
##   variables                                                       0  1  0
##   vendors                                                         0  1  0
##   zheng                                                           0  1  0
##   13485                                                           0  0  1
##   acts                                                            0  0  1
##   advance                                                         0  0  1
##   advantage                                                       0  0  1
##   alleviate                                                       0  0  1
##   amounts                                                         0  0  2
##   approaches                                                      0  0  1
##   arrangement                                                     0  0  1
##   aspects                                                         0  0  1
##   assistance                                                      0  0  1
##   automated                                                       0  0  1
##   aws                                                             0  0  1
##   careers                                                         0  0  1
##   catering                                                        0  0  1
##   central                                                         0  0  1
##   cgm                                                             0  0  1
##   chronic                                                         0  0  2
##   clinical                                                        0  0  2
##   closed                                                          0  0  1
##   conducts                                                        0  0  1
##   correct                                                         0  0  1
##   cost                                                            0  0  2
##   customized                                                      0  0  1
##   day                                                             0  0  2
##   describe                                                        0  0  1
##   develops                                                        0  0  1
##   devices                                                         0  0  1
##   diabetes                                                        0  0  2
##   difference                                                      0  0  2
##   disease                                                         0  0  2
##   driving                                                         0  0  2
##   educational                                                     0  0  1
##   elevating                                                       0  0  1
##   employee                                                        0  0  1
##   endtoend                                                        0  0  1
##   exhaustive                                                      0  0  1
##   extend                                                          0  0  1
##   family                                                          0  0  1
##   fda                                                             0  0  1
##   financial                                                       0  0  1
##   fully                                                           0  0  1
##   gain                                                            0  0  1
##   gift                                                            0  0  1
##   glucose                                                         0  0  1
##   grants                                                          0  0  1
##   grow                                                            0  0  1
##   h20ai                                                           0  0  1
##   happen                                                          0  0  1
##   healthcare                                                      0  0  5
##   innovations                                                     0  0  1
##   inspects                                                        0  0  1
##   insulin                                                         0  0  4
##   iso                                                             0  0  1
##   keep                                                            0  0  1
##   leave                                                           0  0  1
##   liaison                                                         0  0  1
##   life                                                            0  0  3
##   list                                                            0  0  1
##   lives                                                           0  0  2
##   located                                                         0  0  1
##   locations                                                       0  0  1
##   loop                                                            0  0  1
##   lowering                                                        0  0  1
##   made                                                            0  0  1
##   maintains                                                       0  0  1
##   managed                                                         0  0  1
##   manages                                                         0  0  1
##   math                                                            0  0  1
##   maximize                                                        0  0  1
##   medtronic                                                       0  0  4
##   mentality                                                       0  0  1
##   met                                                             0  0  1
##   meter                                                           0  0  1
##   mines                                                           0  0  1
##   modelling                                                       0  0  1
##   needs                                                           0  0  1
##   nonrelational                                                   0  0  1
##   novel                                                           0  0  2
##   paid                                                            0  0  1
##   pain                                                            0  0  1
##   patient                                                         0  0  1
##   patients                                                        0  0  2
##   pens                                                            0  0  1
##   physiology                                                      0  0  1
##   place                                                           0  0  1
##   positive                                                        0  0  1
##   precise                                                         0  0  1
##   prior                                                           0  0  1
##   productivity                                                    0  0  1
##   pump                                                            0  0  2
##   pumps                                                           0  0  1
##   push                                                            0  0  1
##   raise                                                           0  0  1
##   range                                                           0  0  1
##   raw                                                             0  0  1
##   record                                                          0  0  1
##   regulations                                                     0  0  1
##   remote                                                          0  0  1
##   report                                                          0  0  1
##   representative                                                  0  0  1
##   restore                                                         0  0  1
##   retirement                                                      0  0  1
##   rewarding                                                       0  0  1
##   roadmap                                                         0  0  1
##   scripting                                                       0  0  1
##   section                                                         0  0  1
##   shape                                                           0  0  1
##   simplify                                                        0  0  1
##   stock                                                           0  0  1
##   succeed                                                         0  0  1
##   successfully                                                    0  0  1
##   target                                                          0  0  1
##   thankyou                                                        0  0  1
##   therapies                                                       0  0  1
##   therapy                                                         0  0  1
##   things                                                          0  0  1
##   thrills                                                         0  0  1
##   tomorrow                                                        0  0  1
##   toward                                                          0  0  1
##   track                                                           0  0  1
##   transform                                                       0  0  1
##   transforms                                                      0  0  1
##   ultimate                                                        0  0  1
##   uninformative                                                   0  0  1
##   universal                                                       0  0  1
##   uptodate                                                        0  0  1
##   utilizing                                                       0  0  1
##   valuebased                                                      0  0  1
##   vast                                                            0  0  1
##   verifies                                                        0  0  1
##   volunteer                                                       0  0  1
##   want                                                            0  0  2
##   ways                                                            0  0  1
##   wellbeing                                                       0  0  1
##   worldwide                                                       0  0  1
##   yesterday                                                       0  0  1
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  0  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          0  0  0
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  0
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  0  0
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            15 16 17
##   125m                                                            0  0  0
##   401k                                                            1  1  1
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      1  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  0  0
##   analysis                                                        3  3  0
##   anova                                                           0  0  0
##   app                                                             0  0  1
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  0
##   base                                                            0  0  0
##   become                                                          1  1  0
##   benefits                                                        1  1  2
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        1  2  0
##   business                                                        3  6  2
##   calculate                                                       0  0  0
##   can                                                             3  0  1
##   candidate                                                       0  0  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        1  0  0
##   code                                                            0  0  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  0  0
##   communicator                                                    0  0  0
##   companies                                                       0  0  0
##   company                                                         0  1  1
##   compelling                                                      0  0  0
##   competitive                                                     1  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  2
##   country                                                         0  0  0
##   create                                                          0  0  0
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                           14 14  5
##   dataset                                                         0  0  0
##   deep                                                            0  0  0
##   delivering                                                      0  1  0
##   dental                                                          0  0  1
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            1  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  0  0
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  1
##   equity                                                          0  0  1
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                      2  7  5
##   explain                                                         0  0  0
##   feature                                                         1  1  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            1  0  1
##   functions                                                       0  0  0
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  1  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  0
##   identifying                                                     1  0  0
##   includes                                                        0  0  0
##   including                                                       1  2  0
##   increased                                                       0  0  0
##   industry                                                        2  1  2
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  0  0
##   largest                                                         1  0  0
##   learn                                                           1  0  0
##   learning                                                        8  0  7
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        0  0  0
##   lidia                                                           0  0  0
##   like                                                            2  1  1
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  2  0
##   machine                                                         6  0  5
##   maintainable                                                    0  0  0
##   make                                                            1  1  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        1  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  1  1
##   metrics                                                         0  1  0
##   mission                                                         0  0  0
##   mobile                                                          0  0  0
##   model                                                           1  0  0
##   models                                                          0  1  4
##   movement                                                        0  0  0
##   need                                                            0  1  0
##   next                                                            0  0  0
##   nice                                                            1  0  0
##   ondemand                                                        0  0  0
##   one                                                             2  2  0
##   opportunities                                                   1  0  0
##   optimization                                                    1  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        0  1  0
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          1  2  0
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       1  0  0
##   platform                                                        0  0  1
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      1  0  0
##   product                                                         1  1  0
##   prototype                                                       0  0  0
##   provide                                                         2  0  1
##   python                                                          1  1  2
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       1  1  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  0
##   sample                                                          1  0  0
##   science                                                         4  2  1
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             1  3  0
##   startup                                                         1  0  0
##   statistical                                                     1  3  0
##   strategies                                                      0  0  0
##   success                                                         0  0  0
##   systems                                                         1  0  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            2  3  1
##   teams                                                           1  0  0
##   tech                                                            1  0  0
##   technology                                                      1  0  0
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  0  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        1  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   1  0  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  1  0
##   utility                                                         0  0  0
##   vacation                                                        0  1  1
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  1
##   visualizations                                                  1  0  0
##   way                                                             0  1  0
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          0  0  0
##   words                                                           0  0  0
##   work                                                            1  3  2
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           0  1  0
##   360b                                                            0  0  0
##   algorithms                                                      4  0  2
##   analytics                                                       0  1  1
##   andor                                                           1  1  0
##   bachelor                                                        0  0  1
##   basis                                                           0  0  0
##   behavior                                                        0  0  0
##   believe                                                         0  1  0
##   big                                                             1  2  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  0  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         0  1  0
##   computation                                                     0  0  0
##   content                                                         1  2  0
##   conversion                                                      0  0  0
##   critical                                                        0  0  0
##   customer                                                        1  1  0
##   database                                                        0  0  0
##   decided                                                         0  0  0
##   decisions                                                       1  1  0
##   degree                                                          2  1  2
##   deliver                                                         0  1  0
##   design                                                          0  0  1
##   discovery                                                       0  0  0
##   distributed                                                     0  0  1
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       1  0  1
##   employer                                                        0  0  0
##   employment                                                      2  0  0
##   engine                                                          1  0  0
##   environment                                                     1  0  1
##   equal                                                           1  0  0
##   field                                                           0  0  0
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          0  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  0
##   inclusive                                                       0  0  1
##   increase                                                        0  0  0
##   informed                                                        1  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  0  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             2  0  0
##   join                                                            1  0  0
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         0  1  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       1  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  1  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          1  0  0
##   opportunity                                                     1  1  0
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            2  0  1
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  1
##   predictive                                                      0  0  0
##   preferably                                                      1  0  0
##   production                                                      0  0  2
##   products                                                        1  1  0
##   programming                                                     1  1  0
##   publisher                                                       0  0  0
##   qualifications                                                  0  0  0
##   quantitative                                                    1  0  1
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 0  1  0
##   related                                                         0  0  0
##   requirements                                                    1  1  0
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       1  5  1
##   senior                                                          0  0  0
##   serving                                                         0  0  0
##   set                                                             0  0  0
##   sites                                                           0  0  0
##   solutions                                                       1  1  0
##   something                                                       0  0  0
##   spark                                                           3  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  1
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  1  0
##   support                                                         1  0  0
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           0  0  0
##   visitors                                                        1  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           0  2  0
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  1  0  0
##   acquire                                                         0  0  0
##   across                                                          1  0  2
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        0  1  1
##   age                                                             1  0  0
##   agile                                                           1  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  0
##   application                                                     0  0  0
##   applications                                                    0  0  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   1  0  0
##   available                                                       0  1  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  0
##   capgemini                                                       0  0  0
##   changing                                                        0  1  0
##   characteristic                                                  1  0  0
##   click                                                           1  0  0
##   clients                                                         1  0  0
##   collaborate                                                     1  0  1
##   comes                                                           0  0  0
##   computer                                                        1  1  1
##   consider                                                        0  0  0
##   consideration                                                   0  0  0
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  0
##   delivery                                                        0  0  0
##   demands                                                         0  0  0
##   deploy                                                          0  0  1
##   deployment                                                      1  0  0
##   description                                                     1  0  0
##   designing                                                       1  0  0
##   develop                                                         0  0  3
##   developer                                                       0  0  0
##   developing                                                      0  0  0
##   development                                                     0  0  0
##   digital                                                         0  0  0
##   disabilities                                                    1  0  0
##   disability                                                      1  0  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     2  3  1
##   enhance                                                         0  0  0
##   ensuring                                                        0  1  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     1  0  1
##   expert                                                          0  0  0
##   expertise                                                       0  0  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  3  0
##   forefront                                                       0  0  0
##   frameworks                                                      1  0  0
##   function                                                        0  0  0
##   functional                                                      1  0  0
##   future                                                          0  3  0
##   gathering                                                       1  0  0
##   gender                                                          2  0  0
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  4  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            1  0  3
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  1
##   include                                                         0  1  0
##   individuals                                                     1  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     2  0  0
##   innovation                                                      0  1  0
##   intended                                                        0  0  0
##   interpreting                                                    1  0  0
##   involve                                                         0  0  0
##   java                                                            1  0  0
##   junior                                                          0  0  0
##   knowledge                                                       1  0  0
##   landscape                                                       0  0  0
##   languages                                                       2  1  0
##   large                                                           0  0  0
##   law                                                             1  0  0
##   leader                                                          2  0  0
##   leadership                                                      0  1  1
##   lifecycle                                                       1  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  0
##   management                                                      0  0  0
##   manipulation                                                    1  0  0
##   manner                                                          0  1  0
##   manufacturers                                                   0  0  0
##   marital                                                         1  0  0
##   matter                                                          0  0  0
##   may                                                             0  0  0
##   meetings                                                        0  0  0
##   members                                                         0  0  0
##   mental                                                          1  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         2  1  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  1
##   national                                                        1  0  0
##   necessary                                                       0  0  0
##   new                                                             0  0  3
##   now                                                             0  0  0
##   operations                                                      2  0  0
##   organizations                                                   0  0  0
##   orientation                                                     1  0  0
##   origin                                                          1  0  0
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        1  0  0
##   platforms                                                       0  0  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     0  0  0
##   proficient                                                      2  0  0
##   program                                                         2  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  1
##   project                                                         3  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        1  1  0
##   protected                                                       1  0  0
##   provided                                                        0  0  0
##   qualified                                                       2  0  0
##   queuing                                                         0  0  0
##   race                                                            1  0  0
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      1  0  0
##   receive                                                         0  0  0
##   referenced                                                      0  0  0
##   regard                                                          1  0  0
##   release                                                         0  0  0
##   relevant                                                        0  0  0
##   religion                                                        1  0  0
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  1  0
##   require                                                         0  0  0
##   required                                                        0  0  0
##   requirement                                                     0  0  0
##   responsibilities                                                0  2  0
##   responsible                                                     0  0  0
##   results                                                         0  0  0
##   revenues                                                        0  0  0
##   review                                                          0  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         1  0  0
##   rights                                                          0  0  0
##   role                                                            1  3  1
##   rshiny                                                          0  0  0
##   scala                                                           1  0  0
##   sensory                                                         0  0  0
##   services                                                        0  0  1
##   sets                                                            0  0  1
##   sexual                                                          1  0  0
##   shiny                                                           0  0  0
##   skills                                                          0  2  1
##   software                                                        1  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          4  0  0
##   strategy                                                        0  0  0
##   strong                                                          0  1  0
##   supervise                                                       0  0  0
##   technical                                                       0  0  0
##   techniques                                                      0  1  0
##   testing                                                         0  1  0
##   tools                                                           1  0  0
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  0
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         1  0  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  0  0
##   written                                                         0  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         1  0  1
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         0  2  0
##   analytical                                                      1  0  0
##   analyze                                                         0  0  0
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  1  0
##   best                                                            0  1  2
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  0
##   excel                                                           1  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  0  0
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  1  0
##   important                                                       0  0  0
##   improve                                                         1  0  0
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    1  1  0
##   intermedia                                                      0  0  0
##   internal                                                        0  0  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  0  0
##   marketing                                                       1  2  0
##   master                                                          1  0  0
##   media                                                           1  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           0  2  0
##   part                                                            0  1  0
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  1
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         1  0  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  1  0
##   research                                                        0  0  1
##   resources                                                       1  1  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  3  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         0  2  0
##   service                                                         0  1  0
##   solving                                                         0  0  0
##   special                                                         0  0  0
##   standard                                                        1  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  1  1
##   technologies                                                    0  0  2
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  0
##   understand                                                      0  1  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          1  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        0  1  0
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  1  0
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          0  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       1  0  0
##   among                                                           0  0  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           0  0  0
##   architectures                                                   0  0  0
##   areas                                                           1  0  0
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      0  0  0
##   chosen                                                          0  1  0
##   citizenship                                                     1  2  0
##   clandestine                                                     0  0  0
##   classification                                                  0  0  0
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      1  0  0
##   color                                                           1  0  0
##   comfort                                                         0  1  0
##   commercial                                                      0  1  0
##   commitment                                                      0  1  0
##   common                                                          0  0  0
##   communication                                                   0  0  0
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  1
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  1
##   engineers                                                       1  0  0
##   every                                                           0  0  0
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          1  0  1
##   explore                                                         0  0  1
##   exploring                                                       0  0  0
##   expression                                                      1  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     2  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          1  1  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        0  0  0
##   highly                                                          0  0  1
##   ideas                                                           0  0  1
##   identity                                                        2  0  0
##   image                                                           0  0  0
##   impossible                                                      0  1  0
##   inception                                                       0  0  0
##   independent                                                     1  0  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             0  0  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  0
##   lead                                                            0  0  0
##   leaders                                                         0  0  0
##   let                                                             0  0  0
##   libraries                                                       1  0  0
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  1  0
##   minds                                                           0  0  0
##   minimum                                                         0  0  0
##   modern                                                          0  0  0
##   much                                                            0  1  0
##   multiple                                                        1  1  0
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         0  2  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  0  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         0  0  0
##   passionate                                                      1  0  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          1  1  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  1
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       1  2  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  0
##   realworld                                                       0  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      0  0  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        0  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  0  0
##   scientists                                                      0  0  0
##   scikitlearn                                                     1  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  0  0
##   share                                                           1  1  1
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         1  0  0
##   small                                                           0  1  0
##   solid                                                           1  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  1  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   1  0  0
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      1  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      1  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           1  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  0  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  0  0
##   unsupervised                                                    1  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            1  0  2
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         2  1  0
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  2  0
##   essential                                                       0  0  0
##   experts                                                         0  0  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        5  0  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  1
##   numpy                                                           0  0  0
##   pandas                                                          0  0  1
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      1  1  0
##   structured                                                      1  0  0
##   text                                                            0  1  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    1  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      1  0  0
##   actions                                                         0  0  0
##   addition                                                        1  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  1  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            1  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  1
##   dashboards                                                      0  1  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         1  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  1
##   identifybuild                                                   0  0  0
##   impact                                                          0  1  0
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        1  0  0
##   material                                                        0  0  0
##   mathematics                                                     0  0  0
##   mining                                                          1  2  0
##   modeling                                                        1  0  0
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           1  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  0
##   physics                                                         0  0  0
##   please                                                          1  0  0
##   practiced                                                       1  0  0
##   present                                                         0  0  0
##   professionals                                                   1  0  0
##   referrals                                                       0  0  1
##   reinforces                                                      0  0  0
##   rewards                                                         0  1  1
##   run                                                             0  0  0
##   sas                                                             0  0  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    2  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  2  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  0  0
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        2  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         1  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  0
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       1  0  0
##   datadriven                                                      0  1  0
##   decision                                                        0  0  0
##   department                                                      0  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          1  0  0
##   evaluate                                                        0  0  0
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       1  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  1
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          1  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  1
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  0  0
##   tasks                                                           0  0  0
##   units                                                           0  0  1
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  0  0
##   100                                                             0  1  1
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  0  0
##   bayesian                                                        0  0  0
##   boosting                                                        0  1  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       0  1  1
##   demand                                                          1  1  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  1
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      1  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  1  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  1  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           1  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  1  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      1  0  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         2  1  0
##   southern                                                        0  0  0
##   specific                                                        0  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           0  1  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         1  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  1
##   bring                                                           0  0  0
##   catered                                                         0  0  1
##   clear                                                           0  0  0
##   clustering                                                      0  0  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  1  0
##   either                                                          0  0  0
##   events                                                          0  1  0
##   executives                                                      0  0  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  1  0
##   fsa                                                             0  0  0
##   get                                                             1  1  1
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  1
##   lifetime                                                        0  0  0
##   looker                                                          0  1  0
##   maintaining                                                     0  0  0
##   masters                                                         0  1  0
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  0  0
##   optimize                                                        0  0  1
##   optimizing                                                      0  0  0
##   phd                                                             0  1  0
##   points                                                          0  0  1
##   proven                                                          0  1  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  2  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  1
##   store                                                           1  0  0
##   subscription                                                    0  0  0
##   surveys                                                         1  0  0
##   tackle                                                          0  0  0
##   take                                                            0  1  0
##   transactions                                                    0  0  0
##   tune                                                            0  1  0
##   unit                                                            0  1  0
##   unlimited                                                       0  0  1
##   used                                                            0  0  0
##   visualization                                                   2  1  0
##   youll                                                           0  0  2
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  1  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  1  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  1  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  1  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        0  2  0
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           1  0  0
##   plan                                                            0  1  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  1  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  2  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  1  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  1  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       1  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  1  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         1  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         2  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         2  0  0
##   final                                                           0  0  0
##   health                                                          1  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      1  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             1  0  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      1  0  0
##   automated                                                       0  0  0
##   aws                                                             1  0  1
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  1  0
##   diabetes                                                        0  0  0
##   difference                                                      1  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  1
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  1
##   gain                                                            1  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  1  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  1  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  1
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  1  0
##   raw                                                             0  0  1
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  1  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       0  2  0
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            1  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       1  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        1  0  0
##   annually                                                        1  0  0
##   apache                                                          2  0  0
##   apis                                                            1  0  0
##   attendance                                                      1  0  0
##   attract                                                         1  0  0
##   availability                                                    1  0  0
##   based                                                           1  1  0
##   bestinclass                                                     1  0  0
##   bias                                                            1  0  0
##   biggest                                                         1  0  0
##   bizrate                                                         5  0  0
##   buyers                                                          2  0  0
##   capability                                                      1  0  0
##   careerboosting                                                  1  0  0
##   case                                                            1  0  0
##   choose                                                          1  0  0
##   cleansing                                                       1  0  0
##   collaborative                                                   1  0  1
##   collected                                                       1  0  0
##   communicating                                                   1  0  0
##   comprehensive                                                   1  0  0
##   conferences                                                     1  0  0
##   cons                                                            1  0  0
##   consumers                                                       1  0  0
##   continuously                                                    1  0  0
##   contributor                                                     2  0  0
##   coordinating                                                    1  0  0
##   core                                                            2  0  0
##   cover                                                           1  0  0
##   creed                                                           1  0  0
##   cross                                                           1  0  0
##   customerfacing                                                  1  0  0
##   customergenerated                                               1  0  0
##   cycle                                                           1  0  0
##   definition                                                      1  0  0
##   depending                                                       1  0  0
##   ecosystem                                                       1  0  0
##   ecosystems                                                      1  0  0
##   eeo                                                             1  0  0
##   effectively                                                     1  0  0
##   emergent                                                        1  0  0
##   evaluating                                                      1  0  0
##   excitement                                                      1  0  0
##   experiences                                                     1  0  0
##   exposed                                                         1  0  0
##   fun                                                             1  0  1
##   genetic                                                         1  0  0
##   gigabyte                                                        1  0  0
##   given                                                           1  0  0
##   hired                                                           1  0  0
##   holdout                                                         1  0  0
##   httpwwwuscisgoveverifyemployees                                 1  0  0
##   hyper                                                           1  0  0
##   integration                                                     1  0  0
##   investment                                                      1  0  0
##   likeminded                                                      1  0  0
##   local                                                           1  0  0
##   lot                                                             1  0  0
##   means                                                           1  0  0
##   measurements                                                    1  0  0
##   meredith                                                        6  0  0
##   million                                                         1  0  0
##   modelsresults                                                   1  0  0
##   move                                                            1  0  0
##   needle                                                          1  0  0
##   ones                                                            1  0  0
##   overfitting                                                     1  0  0
##   paradigm                                                        1  0  0
##   parameter                                                       1  0  0
##   participates                                                    1  0  0
##   participating                                                   1  0  0
##   parties                                                         1  0  0
##   partners                                                        1  0  0
##   persons                                                         1  0  0
##   popular                                                         1  0  0
##   practical                                                       1  0  0
##   priorities                                                      1  0  0
##   pros                                                            1  0  0
##   public                                                          1  0  0
##   ratings                                                         1  0  0
##   regardless                                                      1  0  0
##   reimbursement                                                   1  0  1
##   retail                                                          1  0  0
##   retailers                                                       3  0  0
##   rmse                                                            1  0  0
##   rocksolid                                                       1  0  0
##   rpython                                                         1  0  0
##   selflearner                                                     1  0  0
##   seller                                                          1  0  0
##   semisupervised                                                  1  0  0
##   sessions                                                        1  0  0
##   side                                                            1  0  0
##   sizes                                                           1  0  0
##   social                                                          1  2  0
##   state                                                           1  0  0
##   supportive                                                      1  0  0
##   switch                                                          1  0  0
##   technologist                                                    1  0  0
##   terabytescale                                                   1  0  0
##   thousands                                                       1  1  0
##   thrive                                                          1  1  0
##   timeline                                                        1  0  0
##   toolkits                                                        1  0  0
##   traffic                                                         1  0  0
##   tuition                                                         1  0  0
##   validation                                                      1  0  0
##   verified                                                        1  0  0
##   versa                                                           1  0  0
##   vice                                                            1  0  0
##   xgboost                                                         1  0  1
##   accomplished                                                    0  1  0
##   advisors                                                        0  1  0
##   ahead                                                           0  1  0
##   ambition                                                        0  1  0
##   becoming                                                        0  2  0
##   boasts                                                          0  1  0
##   boundless                                                       0  1  0
##   broader                                                         0  1  0
##   channels                                                        0  1  0
##   citizen                                                         0  4  0
##   citizens                                                        0  1  0
##   comfortable                                                     0  1  0
##   consistencystandardization                                      0  1  0
##   corporate                                                       0  1  0
##   coveted                                                         0  1  0
##   define                                                          0  1  0
##   defining                                                        0  1  0
##   distribution                                                    0  2  0
##   domains                                                         0  1  0
##   dont                                                            0  1  0
##   earned                                                          0  1  0
##   elite                                                           0  1  0
##   entertaining                                                    0  1  0
##   entertainment                                                   0  4  0
##   entrepreneurs                                                   0  1  0
##   environments                                                    0  1  0
##   epic                                                            0  1  0
##   exclusive                                                       0  1  0
##   forest                                                          0  1  0
##   generouslysponsored                                             0  1  0
##   giants                                                          0  1  0
##   glmregression                                                   0  1  0
##   hard                                                            0  2  0
##   head                                                            0  1  0
##   hit                                                             0  1  0
##   hollywood                                                       0  1  0
##   impacting                                                       0  1  1
##   improvements                                                    0  1  0
##   individual                                                      0  1  0
##   investors                                                       0  1  0
##   know                                                            0  1  0
##   lasting                                                         0  1  0
##   lean                                                            0  1  0
##   lifestyle                                                       0  1  0
##   mastery                                                         0  2  0
##   microstrategy                                                   0  1  0
##   movies                                                          0  2  0
##   news                                                            0  1  0
##   nonsql                                                          0  1  0
##   open                                                            0  1  0
##   opposed                                                         0  1  0
##   particularly                                                    0  1  0
##   planet                                                          0  1  0
##   plentiful                                                       0  1  0
##   pluto                                                           0  6  0
##   powerbi                                                         0  1  0
##   premier                                                         0  1  0
##   privilege                                                       0  1  0
##   proactively                                                     0  2  0
##   profoundly                                                      0  1  0
##   pull                                                            0  1  0
##   qualities                                                       0  1  0
##   quest                                                           0  1  0
##   questioning                                                     0  1  0
##   random                                                          0  1  0
##   reach                                                           0  1  0
##   renowned                                                        0  1  0
##   revolutionize                                                   0  1  0
##   scoring                                                         0  1  0
##   seemingly                                                       0  1  0
##   selective                                                       0  1  0
##   selfstarters                                                    0  1  0
##   servicing                                                       0  1  0
##   significantly                                                   0  1  0
##   smartest                                                        0  1  0
##   speed                                                           0  1  0
##   stakes                                                          0  1  0
##   starts                                                          0  1  0
##   strongly                                                        0  1  0
##   successful                                                      0  1  0
##   suggesting                                                      0  1  0
##   supported                                                       0  1  0
##   television                                                      0  4  0
##   timely                                                          0  1  0
##   treat                                                           0  1  0
##   unstructurednonstandardized                                     0  1  0
##   useful                                                          0  1  0
##   viewers                                                         0  1  0
##   warp                                                            0  1  0
##   west                                                            0  1  0
##   wide                                                            0  1  0
##   youre                                                           0  1  0
##   airflow                                                         0  0  1
##   art                                                             0  0  1
##   automotive                                                      0  0  1
##   block                                                           0  0  1
##   cars                                                            0  0  1
##   cellphone                                                       0  0  1
##   commuter                                                        0  0  1
##   competing                                                       0  0  1
##   competition                                                     0  0  1
##   construct                                                       0  0  1
##   coverage                                                        0  0  1
##   daily                                                           0  0  1
##   discount                                                        0  0  1
##   docker                                                          0  0  1
##   dollar                                                          0  0  1
##   eagerness                                                       0  0  1
##   etl                                                             0  0  1
##   fair                                                            0  0  4
##   families                                                        0  0  1
##   features                                                        0  0  1
##   flask                                                           0  0  1
##   green                                                           0  0  1
##   incentives                                                      0  0  1
##   jupyter                                                         0  0  1
##   kaggle                                                          0  0  1
##   kubernetes                                                      0  0  1
##   light                                                           0  0  1
##   luigi                                                           0  0  1
##   lunch                                                           0  0  1
##   mentorship                                                      0  0  1
##   molds                                                           0  0  1
##   onboarding                                                      0  0  1
##   owners                                                          0  0  1
##   package                                                         0  0  1
##   parking                                                         0  0  1
##   pivotal                                                         0  0  1
##   play                                                            0  0  1
##   postgres                                                        0  0  1
##   rail                                                            0  0  1
##   realtime                                                        0  0  1
##   reshape                                                         0  0  1
##   running                                                         0  0  1
##   scientistmachine                                                0  0  1
##   shopping                                                        0  0  1
##   sklearn                                                         0  0  1
##   sqlalchemy                                                      0  0  1
##   superset                                                        0  0  1
##   treasure                                                        0  0  1
##   trillion                                                        0  0  1
##   warehousing                                                     0  0  1
##   workflows                                                       0  0  1
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            18 19 20
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      0  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  1  0
##   analysis                                                        4  3  7
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  1  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  1  0
##   base                                                            0  0  0
##   become                                                          0  0  0
##   benefits                                                        0  0  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        0  0  0
##   business                                                        4  0  3
##   calculate                                                       0  0  0
##   can                                                             3  0  0
##   candidate                                                       0  0  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  2  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  0  2
##   communicator                                                    1  0  0
##   companies                                                       1  0  0
##   company                                                         1  1  0
##   compelling                                                      1  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        1  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  1  0
##   country                                                         0  0  0
##   create                                                          0  0  0
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                           22  9 18
##   dataset                                                         0  0  0
##   deep                                                            0  2  0
##   delivering                                                      0  0  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  1  0
##   drayage                                                         0  0  0
##   drive                                                           0  0  0
##   driven                                                          0  1  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                      3  4  3
##   explain                                                         1  0  0
##   feature                                                         0  0  0
##   find                                                            1  1  0
##   finding                                                         0  1  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  1  0
##   functions                                                       0  0  0
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  1  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  1
##   identifying                                                     0  0  0
##   includes                                                        0  0  0
##   including                                                       0  1  3
##   increased                                                       0  0  0
##   industry                                                        0  0  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  5  0
##   largest                                                         0  0  0
##   learn                                                           0  1  0
##   learning                                                        3  8  1
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        1  0  0
##   lidia                                                           0  0  0
##   like                                                            0  5  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         1  2  0
##   machine                                                         1  6  1
##   maintainable                                                    0  0  0
##   make                                                            0  1  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  0  0
##   metrics                                                         0  0  1
##   mission                                                         0  0  1
##   mobile                                                          0  0  0
##   model                                                           0  0  0
##   models                                                          0  0  2
##   movement                                                        0  0  0
##   need                                                            0  1  0
##   next                                                            0  0  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             0  0  0
##   opportunities                                                   0  0  1
##   optimization                                                    0  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  3
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          2  1  0
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  1  0
##   point                                                           0  0  0
##   potential                                                       1  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      1  6  0
##   product                                                         1  0  0
##   prototype                                                       0  0  0
##   provide                                                         2  0  0
##   python                                                          1  2  0
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           4  0  0
##   sample                                                          0  1  0
##   science                                                         1  2  5
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             1  1  1
##   startup                                                         0  1  0
##   statistical                                                     0  1  2
##   strategies                                                      1  0  0
##   success                                                         0  0  0
##   systems                                                         0  0  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            4  2  1
##   teams                                                           2  0  0
##   tech                                                            0  0  0
##   technology                                                      1  0  1
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  1  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  1
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   2  0  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             5  0  0
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  1  0  0
##   way                                                             0  0  0
##   web                                                             0  1  0
##   whatever                                                        0  1  0
##   within                                                          1  0  0
##   words                                                           0  0  0
##   work                                                            1  3  0
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           0  0  2
##   360b                                                            0  0  0
##   algorithms                                                      2  1  1
##   analytics                                                       2  0  2
##   andor                                                           0  0  0
##   bachelor                                                        0  0  1
##   basis                                                           0  0  0
##   behavior                                                        0  0  0
##   believe                                                         0  1  0
##   big                                                             1  0  1
##   builds                                                          0  0  0
##   chance                                                          0  1  0
##   channel                                                         0  0  0
##   cloud                                                           0  1  0
##   committed                                                       0  0  1
##   comparable                                                      0  0  0
##   complex                                                         1  0  1
##   computation                                                     0  0  0
##   content                                                         0  0  1
##   conversion                                                      0  0  0
##   critical                                                        0  0  0
##   customer                                                        0  0  0
##   database                                                        0  0  1
##   decided                                                         0  0  0
##   decisions                                                       0  1  1
##   degree                                                          1  0  2
##   deliver                                                         2  1  0
##   design                                                          0  0  4
##   discovery                                                       0  0  0
##   distributed                                                     0  0  0
##   diversity                                                       0  1  1
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  0  1
##   employment                                                      0  0  1
##   engine                                                          0  0  0
##   environment                                                     2  0  0
##   equal                                                           0  0  1
##   field                                                           1  0  0
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  3  0
##   hadoop                                                          2  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            1  1  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  0  0
##   interesting                                                     0  1  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             0  2  0
##   join                                                            0  1  0
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         0  0  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  0
##   opportunity                                                     1  0  1
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  1  0
##   plus                                                            0  0  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      0  0  2
##   preferably                                                      0  0  0
##   production                                                      0  2  0
##   products                                                        4  2  0
##   programming                                                     0  0  0
##   publisher                                                       0  0  0
##   qualifications                                                  0  0  1
##   quantitative                                                    1  0  1
##   query                                                           0  1  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 1  0  0
##   related                                                         0  0  0
##   requirements                                                    0  0  1
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       2  1  0
##   senior                                                          0  0  0
##   serving                                                         0  0  0
##   set                                                             0  0  0
##   sites                                                           0  0  0
##   solutions                                                       0  1  0
##   something                                                       0  0  0
##   spark                                                           0  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         0  0  1
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  1  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  1
##   tribune                                                         0  0  0
##   unique                                                          0  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           2  2  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           1  1  0
##   worlds                                                          1  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          1  1  0
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        1  0  1
##   age                                                             0  0  0
##   agile                                                           0  1  0
##   ambitions                                                       0  0  0
##   analysts                                                        1  0  1
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  1
##   application                                                     0  1  0
##   applications                                                    0  0  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  1
##   capgemini                                                       0  0  0
##   changing                                                        1  0  0
##   characteristic                                                  0  0  1
##   click                                                           0  0  0
##   clients                                                         3  0  0
##   collaborate                                                     0  0  0
##   comes                                                           0  0  0
##   computer                                                        1  0  1
##   consider                                                        0  0  0
##   consideration                                                   0  0  1
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  0
##   delivery                                                        0  0  1
##   demands                                                         0  0  0
##   deploy                                                          0  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  0
##   develop                                                         1  0  3
##   developer                                                       0  0  0
##   developing                                                      0  0  0
##   development                                                     1  2  1
##   digital                                                         1  1  0
##   disabilities                                                    0  0  0
##   disability                                                      0  0  1
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  1
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     7  0  1
##   enhance                                                         0  0  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       2  0  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  0  0
##   forefront                                                       0  0  0
##   frameworks                                                      1  1  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          0  0  1
##   gathering                                                       0  0  1
##   gender                                                          0  0  1
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            2  0  0
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  0
##   include                                                         0  1  1
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     0  3  0
##   innovation                                                      0  0  1
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  0
##   junior                                                          0  0  0
##   knowledge                                                       1  1  0
##   landscape                                                       0  0  0
##   languages                                                       0  1  0
##   large                                                           0  0  1
##   law                                                             0  0  1
##   leader                                                          0  0  0
##   leadership                                                      0  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  1
##   management                                                      0  0  1
##   manipulation                                                    0  0  0
##   manner                                                          0  1  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          0  0  0
##   may                                                             1  0  0
##   meetings                                                        0  0  0
##   members                                                         0  0  0
##   mental                                                          0  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         0  1  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  0
##   national                                                        0  0  1
##   necessary                                                       0  0  0
##   new                                                             0  2  0
##   now                                                             0  0  0
##   operations                                                      0  0  0
##   organizations                                                   0  0  0
##   orientation                                                     0  0  1
##   origin                                                          0  0  1
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        1  0  0
##   platforms                                                       0  0  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  2
##   proficiency                                                     0  1  0
##   proficient                                                      0  0  0
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  1
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        0  1  1
##   protected                                                       0  0  1
##   provided                                                        0  0  0
##   qualified                                                       0  0  1
##   queuing                                                         0  0  0
##   race                                                            0  0  1
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  0  1
##   referenced                                                      0  0  0
##   regard                                                          0  0  1
##   release                                                         0  0  0
##   relevant                                                        0  0  1
##   religion                                                        0  0  1
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        1  0  0
##   require                                                         0  0  0
##   required                                                        0  0  0
##   requirement                                                     0  0  0
##   responsibilities                                                0  0  0
##   responsible                                                     0  1  2
##   results                                                         0  1  2
##   revenues                                                        0  0  0
##   review                                                          0  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            1  0  0
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        1  1  0
##   sets                                                            0  0  2
##   sexual                                                          0  0  1
##   shiny                                                           0  0  0
##   skills                                                          2  0  0
##   software                                                        0  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  0  1
##   strategy                                                        0  0  0
##   strong                                                          1  1  0
##   supervise                                                       0  0  0
##   technical                                                       1  0  1
##   techniques                                                      0  1  1
##   testing                                                         0  0  1
##   tools                                                           1  0  2
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  1
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         0  0  1
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       1  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  1
##   workplace                                                       0  0  0
##   written                                                         1  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         1  0  0
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         0  0  0
##   analytical                                                      1  0  1
##   analyze                                                         3  0  1
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  0  0
##   best                                                            3  0  0
##   better                                                          0  1  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          1  1  0
##   combined                                                        0  0  0
##   creative                                                        1  0  0
##   crossfunctional                                                 1  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  0
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  0  0
##   external                                                        0  0  0
##   findings                                                        0  0  1
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  0  0
##   improve                                                         1  0  0
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  0  0
##   intermedia                                                      0  0  0
##   internal                                                        1  0  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  0  0
##   marketing                                                       1  0  0
##   master                                                          0  0  1
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  1
##   order                                                           0  0  0
##   part                                                            0  0  0
##   past                                                            0  0  0
##   patterns                                                        0  0  1
##   practices                                                       2  0  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  0  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  0  0
##   research                                                        0  1  1
##   resources                                                       0  0  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         0  0  0
##   service                                                         0  0  0
##   solving                                                         0  0  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  0  0
##   technologies                                                    0  0  1
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  0
##   understand                                                      1  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  1
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        4  3  0
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           3  2  0
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          0  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       0  0  0
##   among                                                           0  0  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           1  1  0
##   architectures                                                   0  0  0
##   areas                                                           0  0  0
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      1  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  0
##   clandestine                                                     0  0  0
##   classification                                                  1  0  0
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  0  0
##   color                                                           0  0  1
##   comfort                                                         1  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  0  0
##   communication                                                   1  0  0
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  1
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  0
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  1
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  0
##   engineers                                                       0  0  0
##   every                                                           0  1  0
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     1  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        0  0  0
##   highly                                                          1  0  0
##   ideas                                                           0  2  0
##   identity                                                        0  0  1
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  0  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  1  0
##   key                                                             1  0  3
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  0
##   lead                                                            0  0  0
##   leaders                                                         0  0  0
##   let                                                             0  0  0
##   libraries                                                       0  1  0
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  2
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  0
##   minimum                                                         0  0  0
##   modern                                                          0  0  0
##   much                                                            0  1  0
##   multiple                                                        0  0  1
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         0  0  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  2  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         1  0  0
##   pass                                                            0  0  0
##   passion                                                         0  0  0
##   passionate                                                      0  1  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  0  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       0  0  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  1  0
##   realworld                                                       1  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      0  0  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        0  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  1  0
##   scientists                                                      0  0  0
##   scikitlearn                                                     0  1  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  0  0
##   share                                                           0  1  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         1  0  0
##   small                                                           0  0  0
##   solid                                                           0  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   0  1  0
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      1  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  1  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         1  0  0
##   tssci                                                           0  0  0
##   type                                                            0  1  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            0  1  0
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         3  1  0
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           1  1  0
##   essential                                                       0  0  0
##   experts                                                         0  0  0
##   extract                                                         1  0  1
##   facebook                                                        0  0  0
##   fulltime                                                        0  1  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        1  0  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  1  0
##   pandas                                                          0  1  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      4  0  1
##   structured                                                      0  1  2
##   text                                                            0  0  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    0  1  2
##   valuable                                                        1  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      0  0  0
##   actions                                                         0  0  0
##   addition                                                        0  1  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  1
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  1  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  0  1
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     0  1  1
##   mining                                                          0  1  1
##   modeling                                                        0  2  2
##   monitor                                                         0  0  1
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  1
##   physics                                                         0  0  0
##   please                                                          0  1  0
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  0
##   sas                                                             0  0  1
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  1  0
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  1  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  1  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  0
##   assigned                                                        0  0  1
##   assurance                                                       0  0  0
##   atmosphere                                                      0  1  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  0
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  0
##   datadriven                                                      1  0  0
##   decision                                                        0  0  0
##   department                                                      0  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  1
##   excellent                                                       1  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  0
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  1  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  2
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  0  0
##   tasks                                                           0  0  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  1  0
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  1  0
##   analyses                                                        0  0  0
##   bayesian                                                        0  0  0
##   boosting                                                        0  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      2  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       2  0  0
##   demand                                                          0  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        1  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  1
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  0  0
##   locale                                                          0  0  0
##   location                                                        6  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  1
##   oral                                                            1  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  0  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  1  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  1
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         0  1  1
##   southern                                                        0  0  0
##   specific                                                        0  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         0  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         1  0  0
##   bonus                                                           0  1  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  1  0
##   clustering                                                      1  0  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  1  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  0  0
##   either                                                          0  0  0
##   events                                                          0  0  1
##   executives                                                      0  0  0
##   existing                                                        1  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  1  0
##   fsa                                                             0  0  0
##   get                                                             0  2  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         0  5  0
##   nlp                                                             0  1  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  1  0
##   phd                                                             0  0  0
##   points                                                          0  1  0
##   proven                                                          0  0  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  1
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  0  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  2  0
##   visualization                                                   0  1  0
##   youll                                                           2  1  0
##   2011                                                            0  0  0
##   achieve                                                         0  0  1
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  1  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  1  0
##   challenging                                                     0  2  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  0  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  1
##   feasibility                                                     0  0  0
##   fit                                                             0  1  0
##   fluency                                                         1  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  2  0
##   hours                                                           0  0  0
##   humor                                                           0  1  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  1  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  1
##   millions                                                        0  0  0
##   nontechnical                                                    1  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  1
##   planning                                                        0  1  0
##   predict                                                         0  0  1
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  1  0
##   rapidly                                                         1  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  1  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  1  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  0  0
##   final                                                           0  0  0
##   health                                                          0  0  2
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  0  1
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  1  0
##   approaches                                                      1  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  0
##   automated                                                       0  0  1
##   aws                                                             0  0  0
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  1  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            1  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  1
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  1  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            1  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  2
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  1  0
##   raise                                                           0  0  0
##   range                                                           1  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       1  0  0
##   section                                                         0  0  0
##   shape                                                           1  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  3  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       2  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  1  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  1  0
##   ways                                                            0  0  1
##   wellbeing                                                       0  0  0
##   worldwide                                                       1  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           2  0  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  1  0
##   collaborative                                                   1  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   1  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           1  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       2  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        2  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  1  0
##   sizes                                                           0  0  0
##   social                                                          0  0  0
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  0
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  2  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  0  0
##   investors                                                       0  0  0
##   know                                                            0  1  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    1  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  1
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  2  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        1  0  0
##   aggregate                                                       1  0  0
##   applied                                                         2  0  0
##   appreciated                                                     1  0  0
##   appropriate                                                     1  0  1
##   athena                                                          1  0  0
##   author                                                          1  0  0
##   brands                                                          1  0  0
##   breaking                                                        1  0  0
##   broadly                                                         1  0  0
##   command                                                         1  0  0
##   competency                                                      1  0  0
##   components                                                      1  0  0
##   crossfunctionally                                               1  0  0
##   delivered                                                       1  0  0
##   establish                                                       1  0  0
##   established                                                     1  0  0
##   evaluations                                                     1  0  0
##   expand                                                          1  0  0
##   explanation                                                     1  0  0
##   factual                                                         3  0  0
##   factuals                                                        2  0  0
##   filter                                                          1  0  0
##   greatly                                                         1  0  0
##   guidance                                                        1  0  0
##   guide                                                           1  0  0
##   handle                                                          1  0  0
##   happening                                                       1  1  0
##   impactful                                                       1  0  0
##   increasing                                                      1  0  0
##   industryleading                                                 1  0  0
##   influence                                                       1  0  0
##   intelligently                                                   1  0  0
##   interpret                                                       1  0  0
##   known                                                           1  0  0
##   knows                                                           1  0  0
##   learnings                                                       1  0  0
##   letters                                                         1  0  0
##   line                                                            1  0  0
##   love                                                            1  0  0
##   marketers                                                       1  0  0
##   matched                                                         1  0  0
##   messy                                                           1  0  0
##   places                                                          1  0  0
##   prescribe                                                       1  0  0
##   propose                                                         1  0  0
##   questions                                                       1  0  0
##   really                                                          1  1  0
##   recommended                                                     1  0  0
##   sell                                                            1  0  0
##   several                                                         1  0  0
##   sharing                                                         1  0  0
##   shell                                                           1  0  0
##   specifications                                                  1  0  0
##   structure                                                       1  0  0
##   teaching                                                        1  0  0
##   thanks                                                          1  0  0
##   trust                                                           1  0  0
##   uncertainty                                                     1  0  0
##   underlying                                                      1  0  0
##   understands                                                     1  0  0
##   utilities                                                       1  0  0
##   variance                                                        1  0  0
##   willingness                                                     1  1  0
##   wrangle                                                         1  0  0
##   almost                                                          0  1  0
##   artistic                                                        0  1  0
##   ashamed                                                         0  1  0
##   augmenting                                                      0  1  0
##   away                                                            0  1  0
##   bokeh                                                           0  1  0
##   buzz                                                            0  1  0
##   classifiers                                                     0  1  0
##   coming                                                          0  1  0
##   considering                                                     0  1  0
##   constantly                                                      0  1  0
##   creativity                                                      0  1  0
##   credentials                                                     0  1  0
##   dark                                                            0  1  0
##   demo                                                            0  1  0
##   didnt                                                           0  1  0
##   discussions                                                     0  1  0
##   don                                                             0  1  0
##   drama                                                           0  1  0
##   dry                                                             0  1  0
##   enjoying                                                        0  1  0
##   everybody                                                       0  1  0
##   everything                                                      0  1  0
##   facing                                                          0  1  0
##   fear                                                            0  1  0
##   feel                                                            0  1  0
##   finds                                                           0  1  0
##   floor                                                           0  1  0
##   frequent                                                        0  1  0
##   frequently                                                      0  1  0
##   generation                                                      0  2  0
##   github                                                          0  1  0
##   ground                                                          0  1  0
##   handful                                                         0  1  0
##   hidden                                                          0  1  0
##   hobby                                                           0  1  0
##   hole                                                            0  1  0
##   hone                                                            0  1  0
##   ingesting                                                       0  1  0
##   integrity                                                       0  1  0
##   knowledgegraphs                                                 0  1  0
##   laid                                                            0  1  0
##   late                                                            0  1  0
##   likely                                                          0  1  0
##   linkedin                                                        0  1  0
##   links                                                           0  1  0
##   little                                                          0  1  0
##   matplotlib                                                      0  1  0
##   mildly                                                          0  1  0
##   modularization                                                  0  1  0
##   music                                                           0  2  0
##   near                                                            0  1  0
##   night                                                           0  1  0
##   number                                                          0  1  0
##   occasional                                                      0  1  0
##   occurrences                                                     0  1  0
##   politics                                                        0  1  0
##   portfolio                                                       0  1  0
##   practice                                                        0  1  0
##   pragmatist                                                      0  1  0
##   prefer                                                          0  1  0
##   presenting                                                      0  1  0
##   prevent                                                         0  1  0
##   purist                                                          0  1  0
##   rather                                                          0  1  0
##   reflect                                                         0  1  0
##   reuse                                                           0  1  0
##   résumé                                                          0  1  0
##   score                                                           0  1  0
##   selecting                                                       0  1  0
##   semantic                                                        0  1  0
##   serverside                                                      0  1  0
##   smarter                                                         0  1  0
##   sounds                                                          0  1  0
##   specializing                                                    0  1  0
##   spend                                                           0  1  0
##   stats                                                           0  1  0
##   still                                                           0  1  0
##   strive                                                          0  1  0
##   summarization                                                   0  1  0
##   thing                                                           0  1  0
##   thirdparty                                                      0  1  0
##   topic                                                           0  1  0
##   topics                                                          0  1  0
##   uncovering                                                      0  1  0
##   verifying                                                       0  1  0
##   acquisition                                                     0  0  1
##   adoption                                                        0  0  1
##   centene                                                         0  0  2
##   claims                                                          0  0  1
##   db2                                                             0  0  1
##   different                                                       0  0  1
##   distinguish                                                     0  0  1
##   durability                                                      0  0  1
##   expectations                                                    0  0  1
##   experiments                                                     0  0  1
##   exploratory                                                     0  0  1
##   format                                                          0  0  1
##   hana                                                            0  0  1
##   improvement                                                     0  0  1
##   informatics                                                     0  0  1
##   knowledgeexperience                                             0  0  1
##   liaisons                                                        0  0  1
##   measure                                                         0  0  1
##   membership                                                      0  0  1
##   mysql                                                           0  0  1
##   presentations                                                   0  0  1
##   provider                                                        0  0  1
##   recognize                                                       0  0  1
##   sap                                                             0  0  2
##   scale                                                           0  0  2
##   targeted                                                        0  0  1
##   teradata                                                        0  0  1
##   validate                                                        0  0  1
##   values                                                          0  0  1
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            21 22 23
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  1  0
##   activities                                                      0  0  1
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  0  0
##   analysis                                                        4  0  3
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  0
##   base                                                            0  0  0
##   become                                                          0  0  0
##   benefits                                                        0  0  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        1  0  4
##   business                                                        3  2  8
##   calculate                                                       0  0  0
##   can                                                             0  1  0
##   candidate                                                       1  1  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  0  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  0  1
##   communicator                                                    0  0  0
##   companies                                                       0  0  0
##   company                                                         3  0  2
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  0  1
##   creating                                                        2  0  1
##   criteria                                                        0  0  0
##   curiosity                                                       0  2  0
##   data                                                           18 11 19
##   dataset                                                         0  0  0
##   deep                                                            0  0  1
##   delivering                                                      0  0  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  1  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           1  1  2
##   driven                                                          0  0  0
##   drivers                                                         0  1  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  1
##   execute                                                         0  0  0
##   experience                                                     11  4  3
##   explain                                                         0  0  0
##   feature                                                         0  0  2
##   find                                                            1  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  0  1
##   functions                                                       0  0  1
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          1  0  0
##   great                                                           0  1  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  0
##   identifying                                                     0  0  0
##   includes                                                        0  0  0
##   including                                                       0  0  0
##   increased                                                       0  0  0
##   industry                                                        1  0  2
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  0  0
##   largest                                                         0  0  0
##   learn                                                           0  1  0
##   learning                                                        5  3  5
##   led                                                             0  0  0
##   level                                                           0  1  0
##   leverage                                                        0  2  0
##   lidia                                                           0  0  0
##   like                                                            0  1  1
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  1  1
##   machine                                                         3  3  4
##   maintainable                                                    0  0  0
##   make                                                            0  0  1
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  0  0
##   metrics                                                         0  0  1
##   mission                                                         0  0  2
##   mobile                                                          0  0  0
##   model                                                           2  0  1
##   models                                                          3  3  4
##   movement                                                        0  0  0
##   need                                                            0  1  0
##   next                                                            0  0  3
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             0  0  3
##   opportunities                                                   1  0  0
##   optimization                                                    2  3  1
##   otherwise                                                       0  0  0
##   outcomes                                                        1  0  0
##   overall                                                         0  0  0
##   packages                                                        0  0  1
##   people                                                          0  1  0
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  1  1
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         1  0  0
##   processing                                                      0  1  1
##   product                                                         3  1  1
##   prototype                                                       0  0  0
##   provide                                                         0  1  1
##   python                                                          1  1  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  1  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  0
##   sample                                                          0  0  0
##   science                                                         0  3  2
##   sequoia                                                         0  0  0
##   setting                                                         0  1  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             0  1  1
##   startup                                                         0  0  0
##   statistical                                                     3  1  1
##   strategies                                                      1  0  0
##   success                                                         0  0  0
##   systems                                                         0  0  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            0  2  4
##   teams                                                           1  2  1
##   tech                                                            0  1  0
##   technology                                                      0  0  0
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  1  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   0  0  0
##   unix                                                            0  0  1
##   updates                                                         0  0  0
##   use                                                             1  0  1
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  0  0  0
##   way                                                             0  0  0
##   web                                                             1  0  0
##   whatever                                                        0  0  0
##   within                                                          0  0  0
##   words                                                           0  0  0
##   work                                                            0  2  3
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           0  1  1
##   360b                                                            0  0  0
##   algorithms                                                      3  0  1
##   analytics                                                       1  2  4
##   andor                                                           0  0  0
##   bachelor                                                        0  0  0
##   basis                                                           0  0  0
##   behavior                                                        0  0  0
##   believe                                                         0  0  0
##   big                                                             0  2  1
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  0  0
##   committed                                                       0  0  1
##   comparable                                                      0  0  0
##   complex                                                         0  1  1
##   computation                                                     0  0  0
##   content                                                         0  0  1
##   conversion                                                      0  0  0
##   critical                                                        0  0  1
##   customer                                                        1  0  0
##   database                                                        0  0  0
##   decided                                                         0  0  0
##   decisions                                                       0  0  2
##   degree                                                          0  0  1
##   deliver                                                         0  0  1
##   design                                                          0  1  1
##   discovery                                                       0  0  0
##   distributed                                                     1  0  1
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  0  0
##   employment                                                      0  0  0
##   engine                                                          0  0  0
##   environment                                                     0  0  1
##   equal                                                           0  0  0
##   field                                                           0  0  1
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  1
##   hadoop                                                          1  1  1
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  1
##   hive                                                            1  2  1
##   hyperintelligent                                                0  0  0
##   implement                                                       0  1  1
##   inclusive                                                       0  0  0
##   increase                                                        1  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  0  1
##   interesting                                                     0  1  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             0  0  0
##   join                                                            0  1  1
##   kafka                                                           0  0  0
##   largescale                                                      0  1  0
##   leading                                                         0  0  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       1  0  1
##   massive                                                         0  0  2
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  1
##   opportunity                                                     0  3  1
##   personalization                                                 0  0  1
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  2  1
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      1  0  2
##   preferably                                                      0  0  0
##   production                                                      0  1  0
##   products                                                        0  0  3
##   programming                                                     0  0  1
##   publisher                                                       0  0  0
##   qualifications                                                  0  0  0
##   quantitative                                                    0  0  0
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 0  1  0
##   related                                                         0  0  1
##   requirements                                                    0  0  0
##   robust                                                          0  0  2
##   scaling                                                         0  0  0
##   scientist                                                       1  2  3
##   senior                                                          0  0  0
##   serving                                                         0  0  0
##   set                                                             0  0  1
##   sites                                                           0  0  0
##   solutions                                                       0  1  1
##   something                                                       0  0  0
##   spark                                                           2  2  1
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         1  0  0
##   taboola                                                         0  0  0
##   targeting                                                       1  2  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  1  3
##   usa                                                             0  0  0
##   users                                                           0  0  1
##   value                                                           0  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           0  3  1
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0  0  1
##   address                                                         0  1  1
##   adherence                                                       0  0  0
##   advanced                                                        1  3  2
##   age                                                             0  0  0
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  1
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  0
##   application                                                     0  0  0
##   applications                                                    0  0  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  0  1
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  1  0
##   capgemini                                                       0  0  0
##   changing                                                        0  0  0
##   characteristic                                                  0  0  0
##   click                                                           0  0  0
##   clients                                                         0  0  0
##   collaborate                                                     0  1  0
##   comes                                                           0  0  0
##   computer                                                        1  0  0
##   consider                                                        0  0  0
##   consideration                                                   0  0  0
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  1  0
##   delivery                                                        0  1  0
##   demands                                                         0  0  0
##   deploy                                                          0  1  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  0
##   develop                                                         3  0  2
##   developer                                                       0  0  0
##   developing                                                      0  0  1
##   development                                                     1  0  1
##   digital                                                         0  0  0
##   disabilities                                                    0  0  0
##   disability                                                      0  0  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     0  1  1
##   enhance                                                         0  1  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       0  1  2
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  0  1
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          0  1  0
##   gathering                                                       1  0  0
##   gender                                                          0  0  0
##   genetics                                                        0  0  0
##   global                                                          0  1  0
##   group                                                           0  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  2  1
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    1  0  0
##   include                                                         0  0  1
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     0  0  0
##   innovation                                                      0  0  1
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  1
##   junior                                                          0  0  0
##   knowledge                                                       4  1  0
##   landscape                                                       0  0  0
##   languages                                                       1  0  1
##   large                                                           2  2  1
##   law                                                             0  0  0
##   leader                                                          0  0  0
##   leadership                                                      0  1  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  0
##   management                                                      0  0  0
##   manipulation                                                    0  0  0
##   manner                                                          0  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          0  0  0
##   may                                                             0  0  0
##   meetings                                                        0  1  0
##   members                                                         0  0  1
##   mental                                                          0  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         1  1  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            1  0  0
##   national                                                        0  0  0
##   necessary                                                       0  0  0
##   new                                                             1  0  1
##   now                                                             0  0  0
##   operations                                                      0  0  1
##   organizations                                                   0  0  0
##   orientation                                                     0  0  0
##   origin                                                          0  0  0
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        0  0  0
##   platforms                                                       0  0  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       1  0  0
##   proficiency                                                     0  1  0
##   proficient                                                      0  0  1
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  0
##   project                                                         0  1  0
##   projectprogram                                                  0  0  0
##   projects                                                        0  0  0
##   protected                                                       0  0  0
##   provided                                                        0  0  0
##   qualified                                                       0  0  0
##   queuing                                                         0  0  0
##   race                                                            0  0  0
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  0  0
##   referenced                                                      0  0  0
##   regard                                                          0  0  0
##   release                                                         0  0  0
##   relevant                                                        0  0  0
##   religion                                                        0  0  0
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  0  0
##   require                                                         0  0  0
##   required                                                        0  0  0
##   requirement                                                     0  0  0
##   responsibilities                                                1  0  0
##   responsible                                                     0  0  1
##   results                                                         0  0  1
##   revenues                                                        0  0  0
##   review                                                          0  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            0  0  2
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        2  0  0
##   sets                                                            3  1  2
##   sexual                                                          0  0  0
##   shiny                                                           0  0  0
##   skills                                                          2  3  3
##   software                                                        0  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  1
##   status                                                          0  0  0
##   strategy                                                        0  0  0
##   strong                                                          1  1  0
##   supervise                                                       0  0  0
##   technical                                                       0  1  2
##   techniques                                                      6  2  2
##   testing                                                         1  0  0
##   tools                                                           3  0  2
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  0
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         0  0  0
##   visa                                                            0  0  1
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  0  0
##   written                                                         0  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         0  1  3
##   advertising                                                     0  1  0
##   always                                                          0  0  0
##   analyst                                                         0  0  0
##   analytical                                                      0  1  0
##   analyze                                                         2  0  0
##   arise                                                           0  0  0
##   attention                                                       0  1  0
##   attribution                                                     0  1  0
##   best                                                            0  0  2
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  1
##   crossfunctional                                                 0  1  2
##   cuttingedge                                                     0  0  1
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  1  0
##   developers                                                      0  0  0
##   direct                                                          0  1  0
##   efficiency                                                      0  0  0
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  1  0
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  0  0
##   improve                                                         0  0  1
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  0  0
##   intermedia                                                      0  0  0
##   internal                                                        0  0  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  1  1
##   marketing                                                       1  4  0
##   master                                                          0  0  1
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  1  0
##   operational                                                     0  0  0
##   order                                                           0  0  0
##   part                                                            0  0  1
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  0
##   previous                                                        0  1  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  0  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  1  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  0  0
##   research                                                        0  1  1
##   resources                                                       0  0  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         1  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         0  0  0
##   service                                                         0  0  0
##   solving                                                         0  0  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  0  0
##   technologies                                                    0  1  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  1
##   understand                                                      0  0  0
##   vital                                                           0  0  1
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        0  3  1
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  1  0
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          0  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          1  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       0  0  0
##   among                                                           0  0  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           1  2  0
##   architectures                                                   1  0  0
##   areas                                                           0  0  0
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      0  1  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  0
##   clandestine                                                     0  0  0
##   classification                                                  0  1  0
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  0  0
##   color                                                           0  0  0
##   comfort                                                         0  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  0  0
##   communication                                                   0  1  1
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  1
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  1
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  0
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  0
##   engineers                                                       0  0  1
##   every                                                           0  0  0
##   everyone                                                        0  1  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     0  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  1
##   hardware                                                        0  0  0
##   highly                                                          0  0  0
##   ideas                                                           0  0  0
##   identity                                                        0  0  0
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  0  1
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             0  1  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  1
##   lead                                                            0  0  0
##   leaders                                                         0  0  1
##   let                                                             0  1  0
##   libraries                                                       0  0  0
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  1
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  1
##   minimum                                                         0  1  0
##   modern                                                          0  0  0
##   much                                                            0  0  0
##   multiple                                                        0  0  1
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         2  0  0
##   neural                                                          3  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  0  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         0  1  1
##   passionate                                                      0  0  1
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  0  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       0  0  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  0
##   realworld                                                       2  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      1  1  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  1
##   requires                                                        0  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  1  0
##   scientists                                                      0  0  1
##   scikitlearn                                                     0  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  0  0
##   share                                                           0  0  0
##   simulation                                                      1  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         0  0  0
##   small                                                           0  0  0
##   solid                                                           0  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   0  0  1
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      0  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  0  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            0  0  0
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         1  2  1
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         0  0  0
##   extract                                                         0  0  0
##   facebook                                                        1  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        3  1  1
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  1
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      1  0  0
##   structured                                                      0  0  0
##   text                                                            2  0  0
##   theory                                                          0  0  0
##   together                                                        0  1  0
##   uber                                                            0  3  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      0  1  1
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  2
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  1
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  1
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  1  1
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  1
##   material                                                        0  0  0
##   mathematics                                                     0  0  0
##   mining                                                          4  1  4
##   modeling                                                        2  4  0
##   monitor                                                         1  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  2
##   physics                                                         0  0  0
##   please                                                          0  0  1
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  1
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  1
##   sas                                                             0  0  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    1  0  1
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            2  0  0
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        2  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  1  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  0
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          1  0  0
##   databases                                                       1  0  0
##   datadriven                                                      0  1  2
##   decision                                                        3  0  0
##   department                                                      0  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  0
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  1
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  1  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  1
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  1  0
##   participate                                                     0  1  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         1  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        1  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  0  0
##   tasks                                                           0  0  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             1  1  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  0  0
##   bayesian                                                        0  0  0
##   boosting                                                        2  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       0  0  2
##   demand                                                          0  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  1  0
##   effectiveness                                                   2  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  1  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  1
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      1  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        3  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           1  1  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  1  1
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          0  1  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         1  0  0
##   southern                                                        0  0  0
##   specific                                                        1  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           3  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         4  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  0  1
##   clustering                                                      3  1  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  0  0
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  0  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  0  0
##   fsa                                                             0  0  0
##   get                                                             0  1  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           1  1  0
##   inference                                                       0  1  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  0  0
##   optimize                                                        1  1  0
##   optimizing                                                      0  0  0
##   phd                                                             0  0  1
##   points                                                          0  0  0
##   proven                                                          0  0  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  1  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  0  0
##   visualization                                                   0  0  0
##   youll                                                           0  0  1
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          1  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  0  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  1
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  1  0
##   equivalent                                                      0  0  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  1  0
##   millions                                                        0  0  0
##   nontechnical                                                    0  0  1
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       2  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  0  0
##   final                                                           0  0  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  0  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  1
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  1
##   automated                                                       0  0  0
##   aws                                                             0  0  0
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  1  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  1
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  1
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       0  0  1
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  1  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  1  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  2
##   ways                                                            0  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  0  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  1  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  1
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  1
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     1  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  1  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  2  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  1  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  1
##   social                                                          2  0  1
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  1  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  1
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   1  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          2  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   2  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  0  1
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  1
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  1
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          2  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  1
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  1  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  1
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  1
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  1
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  1
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  1
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  1  1
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      1  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  1
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  1  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       1  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     1  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           1  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  1  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  1
##   adept                                                           1  0  0
##   advantagesdrawbacks                                             2  0  0
##   adwords                                                         1  0  0
##   artificial                                                      2  0  0
##   becseeitis                                                      1  0  0
##   catalyst                                                        1  0  0
##   coremetrics                                                     1  0  0
##   courses                                                         1  0  0
##   creatingrunning                                                 1  0  0
##   crimson                                                         1  0  0
##   datacomputing                                                   1  0  0
##   digitalocean                                                    1  0  0
##   draw                                                            1  0  0
##   education                                                       1  0  0
##   framework                                                       1  0  0
##   gained                                                          1  0  0
##   ggplot                                                          1  0  0
##   gurobi                                                          1  0  0
##   hexagon                                                         1  0  0
##   inflight                                                        1  0  0
##   mine                                                            1  0  0
##   miningdata                                                      1  0  0
##   multimedia                                                      1  0  0
##   objects                                                         1  0  0
##   performance                                                     1  1  0
##   periscope                                                       1  0  0
##   primary                                                         1  0  0
##   providers                                                       1  0  0
##   scenario                                                        1  0  0
##   secondary                                                       1  0  0
##   simulations                                                     1  0  0
##   site                                                            1  0  0
##   slq                                                             1  0  0
##   tree                                                            2  0  0
##   usingcreating                                                   1  0  0
##   visualizingpresenting                                           1  0  0
##   600                                                             0  1  0
##   adtech                                                          0  1  0
##   backgrounds                                                     0  1  0
##   balance                                                         0  1  0
##   causal                                                          0  1  0
##   cities                                                          0  1  0
##   crosschannel                                                    0  1  0
##   demonstrable                                                    0  1  0
##   eaters                                                          0  1  0
##   forward                                                         0  1  0
##   grade                                                           0  1  0
##   growth                                                          0  1  0
##   hunger                                                          0  1  0
##   ignite                                                          0  1  0
##   ltv                                                             0  1  0
##   marketindividual                                                0  1  0
##   meeting                                                         0  2  0
##   motion                                                          0  1  0
##   moving                                                          0  1  0
##   planningprioritization                                          0  1  0
##   player                                                          0  1  0
##   prioritization                                                  0  1  0
##   response                                                        0  2  0
##   riders                                                          0  1  0
##   seek                                                            0  1  0
##   spirit                                                          0  1  1
##   stakeholder                                                     0  1  0
##   swift                                                           0  1  0
##   welcome                                                         0  1  0
##   1236                                                            0  0  1
##   answer                                                          0  0  1
##   apparel                                                         0  0  1
##   assortment                                                      0  0  1
##   backtest                                                        0  0  1
##   behaviors                                                       0  0  1
##   brand                                                           0  0  2
##   bright                                                          0  0  1
##   brightest                                                       0  0  1
##   colorful                                                        0  0  1
##   commerce                                                        0  0  1
##   community                                                       0  0  1
##   compare                                                         0  0  1
##   continually                                                     0  0  1
##   course                                                          0  0  1
##   curates                                                         0  0  1
##   currently                                                       0  0  1
##   customerdriven                                                  0  0  1
##   decor                                                           0  0  1
##   designers                                                       0  0  1
##   designs                                                         0  0  1
##   digitally                                                       0  0  1
##   drives                                                          0  0  1
##   dynamic                                                         0  0  1
##   effort                                                          0  0  1
##   empathy                                                         0  0  1
##   empower                                                         0  0  1
##   engagement                                                      0  0  1
##   engaging                                                        0  0  1
##   exist                                                           0  0  1
##   fashion                                                         0  0  1
##   feminine                                                        0  0  1
##   generated                                                       0  0  1
##   greatwhat                                                       0  0  1
##   grounded                                                        0  0  1
##   honesty                                                         0  0  1
##   hundred                                                         0  0  1
##   inhouse                                                         0  0  1
##   inside                                                          0  0  1
##   inspired                                                        0  0  1
##   inspiring                                                       0  0  1
##   intellectual                                                    0  0  1
##   intersection                                                    0  0  1
##   investing                                                       0  0  1
##   iterative                                                       0  0  1
##   javascript                                                      0  0  1
##   kind                                                            0  0  1
##   leverages                                                       0  0  1
##   leveraging                                                      0  0  1
##   linux                                                           0  0  1
##   matterwhat                                                      0  0  1
##   modcloth                                                        0  0  5
##   monthsis                                                        0  0  1
##   native                                                          0  0  1
##   note                                                            0  0  1
##   offline                                                         0  0  1
##   omnichannel                                                     0  0  1
##   outcomeswhy                                                     0  0  1
##   particular                                                      0  0  1
##   performances                                                    0  0  1
##   prints                                                          0  0  1
##   professional                                                    0  0  1
##   retaining                                                       0  0  1
##   sells                                                           0  0  1
##   sentiment                                                       0  0  1
##   sequence                                                        0  0  1
##   signature                                                       0  0  1
##   silhouettes                                                     0  0  1
##   sit                                                             0  0  1
##   stem                                                            0  0  1
##   style                                                           0  0  1
##   unparalleled                                                    0  0  1
##   upon                                                            0  0  1
##   version                                                         0  0  1
##   vintage                                                         0  0  1
##   wants                                                           0  0  1
##   warehouse                                                       0  0  1
##   whats                                                           0  0  1
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            24 25 26
##   125m                                                            0  0  0
##   401k                                                            1  0  0
##   900b                                                            0  0  0
##   able                                                            0  0  2
##   activities                                                      0  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  0  3
##   analysis                                                        3  0  1
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            0  0  1
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  1
##   base                                                            0  0  0
##   become                                                          1  0  0
##   benefits                                                        1  0  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        2  1  1
##   business                                                        6  1  0
##   calculate                                                       0  0  0
##   can                                                             0  1  2
##   candidate                                                       0  0  3
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  1
##   code                                                            0  1  0
##   coding                                                          0  0  1
##   commands                                                        0  0  0
##   communicate                                                     0  1  1
##   communicator                                                    0  0  0
##   companies                                                       0  1  0
##   company                                                         1  0  1
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  1
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  2  1
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                           14  9  7
##   dataset                                                         0  0  0
##   deep                                                            0  1  0
##   delivering                                                      1  1  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  1  0
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  1  0
##   experience                                                      6  4 10
##   explain                                                         0  0  0
##   feature                                                         1  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  0  1
##   functions                                                       0  0  1
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  1  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          1  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  0
##   identifying                                                     0  1  0
##   includes                                                        0  0  1
##   including                                                       2  1  0
##   increased                                                       0  0  0
##   industry                                                        1  0  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  1  1
##   largest                                                         0  0  0
##   learn                                                           0  1  1
##   learning                                                        0  2  5
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        0  0  0
##   lidia                                                           0  0  0
##   like                                                            1  2  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         2  0  4
##   machine                                                         0  1  4
##   maintainable                                                    0  0  0
##   make                                                            1  0  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         1  0  0
##   metrics                                                         1  0  0
##   mission                                                         0  0  2
##   mobile                                                          0  0  0
##   model                                                           0  0  0
##   models                                                          1  0  0
##   movement                                                        0  0  0
##   need                                                            1  1  1
##   next                                                            0  0  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             2  1  1
##   opportunities                                                   0  1  0
##   optimization                                                    0  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        1  0  0
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          2  0  1
##   person                                                          0  0  1
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  1
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      0  2  7
##   product                                                         1  4  0
##   prototype                                                       0  0  0
##   provide                                                         0  0  1
##   python                                                          1  1  2
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  1  0
##   relationships                                                   0  1  0
##   reporting                                                       1  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  0
##   sample                                                          0  0  0
##   science                                                         2  2  6
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  1
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  1
##   specifically                                                    0  1  0
##   splits                                                          0  0  0
##   sql                                                             3  1  0
##   startup                                                         0  0  0
##   statistical                                                     2  0  0
##   strategies                                                      0  0  0
##   success                                                         0  0  1
##   systems                                                         0  2  2
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            3  2  6
##   teams                                                           0  1  0
##   tech                                                            0  1  0
##   technology                                                      0  0  2
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  1  1
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  1
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   0  1  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             1  0  2
##   utility                                                         0  0  0
##   vacation                                                        1  0  0
##   venture                                                         0  1  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  0  0  0
##   way                                                             1  0  0
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          0  0  1
##   words                                                           0  0  0
##   work                                                            3  2  7
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           1  1  2
##   360b                                                            0  0  0
##   algorithms                                                      0  0  1
##   analytics                                                       1  1  0
##   andor                                                           1  0  0
##   bachelor                                                        0  0  0
##   basis                                                           0  0  1
##   behavior                                                        0  1  0
##   believe                                                         1  0  1
##   big                                                             2  2  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  2  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         1  0  2
##   computation                                                     0  0  0
##   content                                                         2  1  0
##   conversion                                                      0  0  0
##   critical                                                        0  0  1
##   customer                                                        1  0  1
##   database                                                        0  0  1
##   decided                                                         0  0  0
##   decisions                                                       1  0  0
##   degree                                                          1  1  2
##   deliver                                                         1  0  0
##   design                                                          0  1  3
##   discovery                                                       0  0  0
##   distributed                                                     0  1  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  1  1
##   employment                                                      0  1  3
##   engine                                                          0  0  0
##   environment                                                     0  0  2
##   equal                                                           0  1  3
##   field                                                           0  0  0
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          0  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  1  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             0  1  2
##   join                                                            0  0  2
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         1  0  1
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  1
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           1  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  0
##   opportunity                                                     1  1  3
##   personalization                                                 0  2  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  0  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      0  0  0
##   preferably                                                      0  0  1
##   production                                                      0  0  0
##   products                                                        1  4  0
##   programming                                                     0  2  3
##   publisher                                                       0  0  0
##   qualifications                                                  0  0  1
##   quantitative                                                    0  0  0
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  1  0
##   recommendations                                                 1  0  0
##   related                                                         0  0  0
##   requirements                                                    1  1  0
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       5  0  1
##   senior                                                          3  1  1
##   serving                                                         0  0  0
##   set                                                             0  0  0
##   sites                                                           0  0  0
##   solutions                                                       1  1  3
##   something                                                       0  0  0
##   spark                                                           0  1  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       1  2  0
##   support                                                         0  0  1
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  0  2
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           0  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           2  1  2
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0  1  0
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        1  1  1
##   age                                                             0  1  0
##   agile                                                           0  0  1
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  2  1
##   application                                                     0  0  0
##   applications                                                    0  0  0
##   apps                                                            0  0  0
##   architects                                                      0  1  0
##   architecture                                                    0  1  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       1  0  1
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  2  1
##   capgemini                                                       0  0  0
##   changing                                                        1  0  0
##   characteristic                                                  0  1  0
##   click                                                           0  0  0
##   clients                                                         0  1  0
##   collaborate                                                     0  0  0
##   comes                                                           0  0  0
##   computer                                                        1  1  1
##   consider                                                        0  0  0
##   consideration                                                   0  1  1
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  0
##   delivery                                                        0  0  0
##   demands                                                         0  0  0
##   deploy                                                          0  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  0
##   develop                                                         0  1  0
##   developer                                                       0  0  1
##   developing                                                      0  0  1
##   development                                                     0  0  4
##   digital                                                         0  4 10
##   disabilities                                                    0  0  0
##   disability                                                      0  1  1
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     3  2  1
##   enhance                                                         0  0  0
##   ensuring                                                        1  0  1
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  1
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       0  1  1
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       3  0  1
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          3  0  0
##   gathering                                                       0  0  0
##   gender                                                          0  0  2
##   genetics                                                        0  0  0
##   global                                                          0  2  0
##   group                                                           4  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  0  0
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  2
##   include                                                         1  1  0
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     0  0  0
##   innovation                                                      1  0  0
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  1  0
##   junior                                                          0  0  0
##   knowledge                                                       0  0  3
##   landscape                                                       0  0  0
##   languages                                                       0  1  2
##   large                                                           0  0  0
##   law                                                             0  1  2
##   leader                                                          0  0  1
##   leadership                                                      1  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  0
##   management                                                      0  0  0
##   manipulation                                                    0  0  0
##   manner                                                          1  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          0  0  0
##   may                                                             0  1  0
##   meetings                                                        0  0  0
##   members                                                         0  0  0
##   mental                                                          0  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         1  0  2
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  1
##   national                                                        0  1  6
##   necessary                                                       0  0  0
##   new                                                             0  0  0
##   now                                                             0  0  0
##   operations                                                      0  0  0
##   organizations                                                   0  0  0
##   orientation                                                     0  0  1
##   origin                                                          0  1  1
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        0  0  0
##   platforms                                                       0  1  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  1  5
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     0  0  0
##   proficient                                                      0  0  0
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  2
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        1  0  3
##   protected                                                       0  2  1
##   provided                                                        0  0  1
##   qualified                                                       0  1  1
##   queuing                                                         0  0  0
##   race                                                            0  1  1
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  1  1
##   referenced                                                      0  0  0
##   regard                                                          0  1  0
##   release                                                         0  0  0
##   relevant                                                        0  1  0
##   religion                                                        0  1  1
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        1  0  0
##   require                                                         0  0  0
##   required                                                        0  0  4
##   requirement                                                     0  0  2
##   responsibilities                                                2  3  1
##   responsible                                                     0  0  0
##   results                                                         0  0  0
##   revenues                                                        0  0  0
##   review                                                          0  1  1
##   reviewing                                                       0  0  0
##   reviews                                                         0  1  0
##   rights                                                          0  0  0
##   role                                                            4  1  1
##   rshiny                                                          0  0  0
##   scala                                                           0  1  0
##   sensory                                                         0  0  0
##   services                                                        0  1  1
##   sets                                                            0  0  0
##   sexual                                                          0  0  1
##   shiny                                                           0  0  0
##   skills                                                          2  0  1
##   software                                                        0  2  4
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  1  2
##   strategy                                                        0  0  0
##   strong                                                          1  1  2
##   supervise                                                       0  0  0
##   technical                                                       0  1  5
##   techniques                                                      1  1  4
##   testing                                                         1  0  0
##   tools                                                           0  0  0
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  1  0
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         0  1  1
##   visa                                                            0  0  0
##   visit                                                           0  1  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  1  0
##   workplace                                                       0  0  0
##   written                                                         0  0  1
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         0  1  1
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         2  0  0
##   analytical                                                      0  0  0
##   analyze                                                         0  0  0
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     1  0  0
##   best                                                            1  0  0
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  0
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  0  0
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             1  0  0
##   important                                                       0  1  0
##   improve                                                         0  0  0
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    1  1  1
##   intermedia                                                      0  0  0
##   internal                                                        0  0  1
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  0  1
##   marketing                                                       2  0  0
##   master                                                          0  0  0
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           2  0  0
##   part                                                            1  1  1
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  0  1
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         1  0  0
##   research                                                        0  0  3
##   resources                                                       1  0  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         3  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         2  0  0
##   service                                                         1  0  0
##   solving                                                         0  0  0
##   special                                                         0  0  1
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         1  1  0
##   technologies                                                    0  0  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  0
##   understand                                                      1  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  1
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        1  0  1
##   pulling                                                         0  0  0
##   scope                                                           0  1  0
##   solve                                                           1  0  2
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  1
##   access                                                          0  0  2
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  1
##   active                                                          0  0  2
##   actively                                                        0  0  0
##   additional                                                      0  1  1
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  1
##   aerospace                                                       0  0  4
##   afraid                                                          0  0  0
##   air                                                             0  0  1
##   algorithm                                                       0  0  2
##   among                                                           0  0  1
##   angeles                                                         0  0  1
##   anomalies                                                       0  0  0
##   apply                                                           0  1  1
##   architectures                                                   0  0  1
##   areas                                                           0  0  1
##   aspiration                                                      0  0  1
##   asset                                                           0  0  1
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  1
##   beyond                                                          0  0  1
##   bigger                                                          0  0  1
##   bus                                                             0  0  0
##   career                                                          0  0  1
##   center                                                          0  0  1
##   challenges                                                      0  0  2
##   chosen                                                          1  0  1
##   citizenship                                                     2  0  1
##   clandestine                                                     0  0  1
##   classification                                                  0  0  2
##   classifier                                                      0  0  0
##   clearance                                                       0  0  4
##   collection                                                      0  0  1
##   color                                                           0  1  1
##   comfort                                                         1  0  0
##   commercial                                                      1  1  1
##   commitment                                                      1  0  1
##   common                                                          0  0  1
##   communication                                                   0  0  6
##   communications                                                  0  0  5
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  1
##   corporation                                                     0  0  4
##   creates                                                         0  0  1
##   curious                                                         0  0  0
##   current                                                         0  0  2
##   cyber                                                           0  0  1
##   datacentric                                                     0  0  1
##   datascience                                                     0  0  1
##   demonstrated                                                    0  0  0
##   described                                                       0  0  1
##   details                                                         0  0  1
##   detect                                                          0  0  0
##   developed                                                       0  0  1
##   differing                                                       0  0  1
##   discriminated                                                   0  0  1
##   diverse                                                         0  0  1
##   eager                                                           0  0  2
##   economic                                                        0  0  1
##   effective                                                       0  0  1
##   efforts                                                         0  0  1
##   else                                                            0  0  0
##   enforcement                                                     0  0  1
##   engineer                                                        0  0  3
##   engineers                                                       0  1  3
##   every                                                           0  0  1
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  1
##   expect                                                          0  0  1
##   explore                                                         0  0  2
##   exploring                                                       0  0  0
##   expression                                                      0  0  1
##   extensive                                                       0  0  0
##   extremely                                                       0  0  1
##   facilities                                                      0  0  1
##   familiarity                                                     0  1  4
##   federally                                                       0  0  1
##   ffrdc                                                           0  0  1
##   filled                                                          0  0  0
##   focused                                                         0  0  1
##   force                                                           0  0  1
##   formulation                                                     0  0  1
##   funded                                                          0  0  1
##   gamechanging                                                    0  0  1
##   gnu                                                             0  0  1
##   government                                                      0  0  2
##   gpus                                                            0  0  1
##   greatest                                                        0  0  1
##   groups                                                          1  0  2
##   growing                                                         0  0  1
##   handson                                                         0  0  3
##   hardware                                                        0  0  1
##   highly                                                          0  0  1
##   ideas                                                           0  1  1
##   identity                                                        0  0  1
##   image                                                           0  0  1
##   impossible                                                      1  0  0
##   inception                                                       0  0  1
##   independent                                                     0  0  1
##   innovators                                                      0  0  1
##   instead                                                         0  0  0
##   intelligent                                                     0  0  1
##   interview                                                       0  0  1
##   issued                                                          0  0  1
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  1
##   key                                                             0  0  1
##   laboratory                                                      0  0  1
##   latest                                                          0  0  0
##   launch                                                          0  0  2
##   lead                                                            0  0  3
##   leaders                                                         0  0  1
##   let                                                             0  0  0
##   libraries                                                       0  0  1
##   limits                                                          0  0  0
##   literally                                                       0  0  1
##   los                                                             0  0  1
##   main                                                            0  0  1
##   major                                                           0  0  1
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  1
##   methodology                                                     1  0  1
##   minds                                                           0  0  0
##   minimum                                                         0  1  1
##   modern                                                          0  0  2
##   much                                                            1  0  1
##   multiple                                                        1  0  1
##   nations                                                         0  0  1
##   nature                                                          0  0  1
##   nearest                                                         0  0  1
##   network                                                         2  0  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  2
##   objective                                                       0  0  1
##   obtain                                                          0  0  2
##   obtaining                                                       0  0  1
##   office                                                          0  0  1
##   operate                                                         0  0  1
##   opportunityaffirmative                                          0  0  1
##   others                                                          0  0  1
##   partner                                                         0  0  1
##   pass                                                            0  0  1
##   passion                                                         0  1  1
##   passionate                                                      0  0  0
##   pay                                                             0  0  1
##   perspectives                                                    0  0  1
##   platypus                                                        0  0  1
##   policy                                                          1  0  1
##   polygraph                                                       0  0  1
##   possible                                                        0  0  0
##   poster                                                          0  0  1
##   potentially                                                     0  0  0
##   preferred                                                       1  0  1
##   pride                                                           0  0  1
##   problemsolving                                                  0  0  2
##   producing                                                       0  0  1
##   prototypes                                                      0  1  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  1
##   radio                                                           0  0  1
##   radios                                                          0  0  4
##   rare                                                            0  0  1
##   readiness                                                       0  0  1
##   ready                                                           0  0  1
##   realworld                                                       0  0  0
##   reconnaissance                                                  0  0  1
##   regression                                                      0  0  1
##   regular                                                         0  0  1
##   reinforcement                                                   0  0  1
##   relocation                                                      0  0  1
##   requires                                                        0  0  3
##   requisition                                                     0  0  1
##   resource                                                        0  0  1
##   satellite                                                       0  0  0
##   schedule                                                        0  0  1
##   scientific                                                      0  0  2
##   scientists                                                      0  0  3
##   scikitlearn                                                     0  0  1
##   secret                                                          0  0  2
##   security                                                        0  0  6
##   segment                                                         0  0  1
##   sensitive                                                       0  0  0
##   serve                                                           0  0  1
##   share                                                           1  1  1
##   simulation                                                      0  0  1
##   simultaneously                                                  0  0  1
##   since                                                           0  0  3
##   skilled                                                         0  0  1
##   small                                                           1  0  2
##   solid                                                           0  0  1
##   space                                                           0  0  5
##   spacerelated                                                    0  0  1
##   spanning                                                        1  0  1
##   specialist                                                      0  0  0
##   specialized                                                     0  0  1
##   staff                                                           0  0  2
##   staffed                                                         0  0  1
##   statement                                                       0  0  2
##   stateoftheart                                                   0  0  2
##   states                                                          0  0  1
##   stf                                                             0  0  1
##   strength                                                        0  0  0
##   studies                                                         0  0  1
##   superior                                                        0  0  1
##   supervised                                                      0  0  0
##   supplement                                                      0  0  1
##   system                                                          0  0  1
##   takes                                                           0  0  1
##   technologically                                                 0  0  1
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  1
##   theano                                                          0  0  0
##   theoretical                                                     0  0  1
##   theoretically                                                   0  0  0
##   thought                                                         0  0  1
##   title                                                           0  0  1
##   transcript                                                      0  0  1
##   transcripts                                                     0  0  1
##   trusted                                                         0  0  1
##   tssci                                                           0  0  0
##   type                                                            0  0  1
##   unconventional                                                  0  0  2
##   united                                                          0  0  1
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  1  1
##   veles                                                           0  0  0
##   verbal                                                          0  0  1
##   well                                                            0  0  2
##   whose                                                           0  0  1
##   workforce                                                       0  0  1
##   working                                                         1  1  3
##   yes                                                             0  0  1
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           2  0  0
##   essential                                                       0  0  0
##   experts                                                         0  1  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        0  0  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      1  1  0
##   structured                                                      0  0  0
##   text                                                            1  0  0
##   theory                                                          0  1  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      0  0  0
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          1  1  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      1  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          1  0  0
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     0  1  0
##   mining                                                          2  0  0
##   modeling                                                        0  1  0
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  0
##   physics                                                         0  0  0
##   please                                                          0  1  0
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         1  0  0
##   run                                                             0  0  0
##   sas                                                             0  0  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  1  0
##   statisticml                                                     0  0  0
##   supporting                                                      2  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  0  0
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  0
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  0
##   datadriven                                                      1  0  0
##   decision                                                        0  0  0
##   department                                                      0  0  1
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  0
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  0
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  1  0
##   tasks                                                           0  0  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  0  0
##   100                                                             1  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  1  0
##   bayesian                                                        0  0  0
##   boosting                                                        1  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       1  0  0
##   demand                                                          1  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  1  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          1  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    1  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       1  0  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         1  0  0
##   southern                                                        0  0  0
##   specific                                                        0  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           1  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         0  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  0  0
##   clustering                                                      0  0  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       1  0  0
##   either                                                          0  0  0
##   events                                                          1  0  0
##   executives                                                      0  1  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            1  0  0
##   fsa                                                             0  0  0
##   get                                                             1  0  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          1  0  0
##   maintaining                                                     0  0  0
##   masters                                                         1  0  0
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  1  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  0  0
##   phd                                                             1  0  0
##   points                                                          0  0  0
##   proven                                                          1  0  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       2  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  1  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            1  1  0
##   transactions                                                    0  0  0
##   tune                                                            1  0  0
##   unit                                                            1  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  0  0
##   visualization                                                   1  1  0
##   youll                                                           0  0  0
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            1  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     1  0  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      1  1  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  1
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            1  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        2  0  0
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            1  0  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           1  0  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         1  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            1  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         1  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  1
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      1  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  1  0
##   final                                                           0  0  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  1  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  1  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  1
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  0
##   automated                                                       0  0  0
##   aws                                                             0  0  0
##   careers                                                         0  1  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         1  1  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            1  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            1  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  1  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           1  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      1  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       2  0  0
##   section                                                         0  1  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  1
##   ways                                                            0  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           1  1  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  2  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  1  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  1  1
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          2  0  0
##   state                                                           0  1  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       1  0  0
##   thrive                                                          1  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    1  0  0
##   advisors                                                        1  0  0
##   ahead                                                           1  0  0
##   ambition                                                        1  0  0
##   becoming                                                        2  0  0
##   boasts                                                          1  0  0
##   boundless                                                       1  0  0
##   broader                                                         1  0  0
##   channels                                                        1  0  0
##   citizen                                                         4  0  0
##   citizens                                                        1  0  0
##   comfortable                                                     1  0  0
##   consistencystandardization                                      1  0  0
##   corporate                                                       1  0  0
##   coveted                                                         1  0  0
##   define                                                          1  0  0
##   defining                                                        1  0  0
##   distribution                                                    2  0  0
##   domains                                                         1  0  0
##   dont                                                            1  0  0
##   earned                                                          1  0  0
##   elite                                                           1  0  0
##   entertaining                                                    1  0  0
##   entertainment                                                   4  0  0
##   entrepreneurs                                                   1  1  0
##   environments                                                    1  1  1
##   epic                                                            1  0  0
##   exclusive                                                       1  0  0
##   forest                                                          1  0  0
##   generouslysponsored                                             1  0  0
##   giants                                                          1  0  0
##   glmregression                                                   1  0  0
##   hard                                                            2  0  0
##   head                                                            1  0  0
##   hit                                                             1  0  0
##   hollywood                                                       1  0  0
##   impacting                                                       1  0  0
##   improvements                                                    1  0  0
##   individual                                                      1  0  0
##   investors                                                       1  1  0
##   know                                                            1  0  0
##   lasting                                                         1  0  0
##   lean                                                            1  0  0
##   lifestyle                                                       1  0  0
##   mastery                                                         2  0  0
##   microstrategy                                                   1  0  0
##   movies                                                          2  0  0
##   news                                                            1  0  0
##   nonsql                                                          1  0  0
##   open                                                            1  0  0
##   opposed                                                         2  0  0
##   particularly                                                    1  0  0
##   planet                                                          1  0  0
##   plentiful                                                       1  0  0
##   pluto                                                           6  0  0
##   powerbi                                                         1  0  0
##   premier                                                         1  0  0
##   privilege                                                       1  0  0
##   proactively                                                     2  0  0
##   profoundly                                                      1  0  0
##   pull                                                            1  0  0
##   qualities                                                       1  0  0
##   quest                                                           1  0  0
##   questioning                                                     1  0  0
##   random                                                          1  0  0
##   reach                                                           1  0  0
##   renowned                                                        1  0  0
##   revolutionize                                                   1  0  0
##   scoring                                                         1  0  0
##   seemingly                                                       1  0  0
##   selective                                                       1  0  0
##   selfstarters                                                    1  0  0
##   servicing                                                       1  0  0
##   significantly                                                   1  0  0
##   smartest                                                        1  0  0
##   speed                                                           1  0  0
##   stakes                                                          1  0  0
##   starts                                                          1  0  0
##   strongly                                                        1  0  0
##   successful                                                      1  1  1
##   suggesting                                                      1  0  0
##   supported                                                       1  0  0
##   television                                                      4  0  0
##   timely                                                          1  0  0
##   treat                                                           1  0  0
##   unstructurednonstandardized                                     1  0  0
##   useful                                                          1  0  0
##   viewers                                                         1  0  0
##   warp                                                            1  0  0
##   west                                                            1  0  0
##   wide                                                            1  0  0
##   youre                                                           1  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  2  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  1
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  1  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  1  1
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  1  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  1  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  1  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  1  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  2
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  1  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  1  0
##   awaits                                                          0  1  0
##   bcg                                                             0  4  0
##   bcgdvcom                                                        0  1  0
##   collaborating                                                   0  1  0
##   cultivate                                                       0  1  0
##   dashboard                                                       0  1  0
##   demonstrate                                                     0  1  0
##   deployed                                                        0  1  0
##   evergrowing                                                     0  1  0
##   fast                                                            0  1  0
##   filtering                                                       0  2  0
##   flurry                                                          0  1  0
##   foundation                                                      0  1  1
##   graph                                                           0  1  0
##   graphing                                                        0  1  0
##   hadoopmapreduce                                                 0  1  0
##   httpswwwbcgdvcom                                                0  1  0
##   ingestion                                                       0  1  0
##   interested                                                      0  1  2
##   interviews                                                      0  1  0
##   least                                                           0  1  0
##   listed                                                          0  1  0
##   mixpanel                                                        0  1  0
##   onpremises                                                      0  1  0
##   pair                                                            0  1  0
##   querying                                                        0  1  0
##   ranging                                                         0  1  0
##   remarkable                                                      0  1  0
##   restricted                                                      0  1  0
##   resumes                                                         0  1  0
##   screened                                                        0  1  0
##   solely                                                          0  1  0
##   strategic                                                       0  1  0
##   talks                                                           0  1  0
##   though                                                          0  1  0
##   varied                                                          0  1  0
##   ventures                                                        0  5  0
##   website                                                         0  1  0
##   additionally                                                    0  0  1
##   autonomously                                                    0  0  1
##   classic                                                         0  0  1
##   clearances                                                      0  0  1
##   compliment                                                      0  0  1
##   cores                                                           0  0  1
##   fpga                                                            0  0  1
##   matlab                                                          0  0  1
##   qualify                                                         0  0  1
##   replace                                                         0  0  1
##   signal                                                          0  0  8
##   softwaredefined                                                 0  0  1
##   studying                                                        0  0  1
##   transceivers                                                    0  0  1
##   unixlinux                                                       0  0  1
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            27 28 29
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            1  0  0
##   activities                                                      1  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            2  0  1
##   analysis                                                        0  0  2
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  1
##   area                                                            0  0  2
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  0
##   base                                                            0  0  0
##   become                                                          1  0  0
##   benefits                                                        0  0  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        0  1  1
##   business                                                        0  3  4
##   calculate                                                       0  0  0
##   can                                                             2  1  1
##   candidate                                                       1  1  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  1  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  1  0
##   communicator                                                    0  0  0
##   companies                                                       0  1  0
##   company                                                         2  0  0
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        2  0  1
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  1  1
##   creating                                                        1  0  1
##   criteria                                                        1  0  0
##   curiosity                                                       0  0  0
##   data                                                           15 12 13
##   dataset                                                         0  0  0
##   deep                                                            0  0  2
##   delivering                                                      0  1  1
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  1  0
##   driven                                                          0  0  3
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  1
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  1  0
##   experience                                                     16  4  6
##   explain                                                         0  0  0
##   feature                                                         0  0  0
##   find                                                            0  1  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  1
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            1  0  0
##   functions                                                       1  0  0
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  1  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          1  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  0
##   identifying                                                     0  1  0
##   includes                                                        0  0  0
##   including                                                       1  1  4
##   increased                                                       0  0  0
##   industry                                                        1  0  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  1  0
##   largest                                                         0  0  0
##   learn                                                           0  1  0
##   learning                                                        6  1  6
##   led                                                             0  0  0
##   level                                                           0  0  2
##   leverage                                                        0  0  1
##   lidia                                                           0  0  0
##   like                                                            1  2  3
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  0  0
##   machine                                                         4  1  4
##   maintainable                                                    0  0  0
##   make                                                            0  0  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         2  0  0
##   metrics                                                         0  0  0
##   mission                                                         3  0  0
##   mobile                                                          0  0  0
##   model                                                           0  0  0
##   models                                                          0  0  8
##   movement                                                        0  0  0
##   need                                                            1  0  1
##   next                                                            0  1  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             3  1  1
##   opportunities                                                   0  1  1
##   optimization                                                    0  0  1
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  1
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          2  0  0
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  0
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         1  0  1
##   processing                                                      1  2  0
##   product                                                         1  4  0
##   prototype                                                       0  0  0
##   provide                                                         1  0  0
##   python                                                          4  1  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  1  0
##   relationships                                                   0  1  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  1
##   sample                                                          0  0  0
##   science                                                         5  2  7
##   sequoia                                                         0  0  0
##   setting                                                         0  0  1
##   shippers                                                        0  0  0
##   shipping                                                        1  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             1  1  1
##   startup                                                         0  0  0
##   statistical                                                     2  0  3
##   strategies                                                      0  0  0
##   success                                                         2  0  0
##   systems                                                        10  2  1
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            5  3  1
##   teams                                                           2  1  2
##   tech                                                            0  1  1
##   technology                                                      2  2  0
##   tests                                                           1  0  0
##   throughout                                                      0  0  0
##   time                                                            3  1  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    1  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   5  1  0
##   unix                                                            0  0  1
##   updates                                                         0  0  0
##   use                                                             1  0  3
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  0  0  0
##   way                                                             0  0  1
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          1  0  4
##   words                                                           0  0  0
##   work                                                            3  2  4
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           3  1  6
##   360b                                                            0  0  0
##   algorithms                                                      1  0  2
##   analytics                                                       0  1  9
##   andor                                                           2  0  2
##   bachelor                                                        0  0  0
##   basis                                                           1  0  1
##   behavior                                                        0  1  0
##   believe                                                         1  0  0
##   big                                                             2  2  1
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           1  2  1
##   committed                                                       0  0  1
##   comparable                                                      0  0  0
##   complex                                                         2  0  2
##   computation                                                     0  0  0
##   content                                                         0  1  0
##   conversion                                                      0  0  0
##   critical                                                        1  0  0
##   customer                                                        1  0  1
##   database                                                        1  0  0
##   decided                                                         0  0  0
##   decisions                                                       0  0  3
##   degree                                                          3  1  1
##   deliver                                                         1  0  1
##   design                                                          1  1  2
##   discovery                                                       0  0  0
##   distributed                                                     1  1  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       1  0  0
##   employer                                                        1  1  1
##   employment                                                      3  1  5
##   engine                                                          0  0  0
##   environment                                                     4  0  0
##   equal                                                           3  1  1
##   field                                                           2  0  1
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          1  0  1
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  2
##   hiring                                                          0  0  1
##   hive                                                            0  0  1
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  1  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             3  2  1
##   join                                                            1  0  1
##   kafka                                                           0  0  0
##   largescale                                                      0  0  1
##   leading                                                         1  1  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        3  0  0
##   mapreduce                                                       0  0  1
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           1  0  0
##   online                                                          1  0  0
##   opportunity                                                     3  2  1
##   personalization                                                 0  2  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  0  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      1  0  1
##   preferably                                                      0  0  0
##   production                                                      2  0  1
##   products                                                        1  4  1
##   programming                                                     1  2  0
##   publisher                                                       0  0  0
##   qualifications                                                  1  0  2
##   quantitative                                                    0  0  0
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  1  1  1
##   recommendations                                                 0  0  0
##   related                                                         5  0  2
##   requirements                                                    0  1  1
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       6  3  1
##   senior                                                          1  1  1
##   serving                                                         0  0  0
##   set                                                             0  0  1
##   sites                                                           0  0  0
##   solutions                                                       3  1  6
##   something                                                       0  0  0
##   spark                                                           1  1  1
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  2  1
##   support                                                         1  0  1
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            1  0  0
##   transformation                                                  0  0  2
##   tribune                                                         0  0  0
##   unique                                                          2  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           0  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           2  0  1
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0  1  1
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        2  1  4
##   age                                                             1  1  1
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      1  2  1
##   application                                                     3  0  0
##   applications                                                    2  0  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  1  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  2
##   available                                                       1  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  2
##   capabilities                                                    1  1  0
##   capgemini                                                       0  0  0
##   changing                                                        1  0  0
##   characteristic                                                  1  1  0
##   click                                                           0  0  0
##   clients                                                         0  1  0
##   collaborate                                                     0  0  2
##   comes                                                           0  0  0
##   computer                                                        6  1  1
##   consider                                                        0  0  0
##   consideration                                                   1  1  1
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  1
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        0  0  0
##   delivery                                                        0  0  2
##   demands                                                         0  0  0
##   deploy                                                          0  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  1
##   designing                                                       0  0  0
##   develop                                                         1  1  2
##   developer                                                       0  0  0
##   developing                                                      1  0  2
##   development                                                    15  0  1
##   digital                                                         0  4  6
##   disabilities                                                    0  0  1
##   disability                                                      4  1  1
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     8  2  2
##   enhance                                                         0  0  0
##   ensuring                                                        1  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        1  0  0
##   experienced                                                     0  0  1
##   expert                                                          0  0  0
##   expertise                                                       1  1  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        1  0  0
##   following                                                       1  1  2
##   forefront                                                       0  0  0
##   frameworks                                                      2  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          0  0  1
##   gathering                                                       0  0  0
##   gender                                                          2  0  1
##   genetics                                                        0  0  0
##   global                                                          0  2  1
##   group                                                           0  0  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  1  1
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    1  0  0
##   include                                                         1  0  0
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     3  0  2
##   innovation                                                      1  1  1
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            2  1  0
##   junior                                                          0  0  0
##   knowledge                                                       3  0  4
##   landscape                                                       0  0  0
##   languages                                                       4  1  0
##   large                                                           1  0  3
##   law                                                             3  1  1
##   leader                                                          1  0  0
##   leadership                                                      2  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  0  0
##   management                                                      1  0  4
##   manipulation                                                    0  0  0
##   manner                                                          0  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         1  0  1
##   matter                                                          0  0  1
##   may                                                             0  1  2
##   meetings                                                        0  0  0
##   members                                                         2  0  0
##   mental                                                          1  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         1  0  4
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  1
##   national                                                        6  1  1
##   necessary                                                       0  0  0
##   new                                                             1  2  2
##   now                                                             0  0  1
##   operations                                                      0  0  1
##   organizations                                                   1  0  1
##   orientation                                                     1  0  1
##   origin                                                          1  1  1
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        1  0  0
##   platforms                                                       1  1  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        3  2  2
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     2  0  0
##   proficient                                                      0  0  1
##   program                                                         0  0  2
##   programmers                                                     0  0  0
##   programs                                                        2  0  0
##   project                                                         1  0  2
##   projectprogram                                                  0  0  0
##   projects                                                        3  0  2
##   protected                                                       2  2  1
##   provided                                                        1  0  0
##   qualified                                                       2  1  0
##   queuing                                                         0  0  0
##   race                                                            1  1  1
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      1  0  0
##   receive                                                         1  1  0
##   referenced                                                      0  0  0
##   regard                                                          0  1  1
##   release                                                         0  0  0
##   relevant                                                        0  1  1
##   religion                                                        1  1  1
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  0  0
##   require                                                         0  0  1
##   required                                                        7  0  0
##   requirement                                                     2  0  0
##   responsibilities                                                2  2  1
##   responsible                                                     0  0  1
##   results                                                         1  0  0
##   revenues                                                        0  0  0
##   review                                                          1  1  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  1  0
##   rights                                                          0  0  0
##   role                                                            0  1  1
##   rshiny                                                          0  0  0
##   scala                                                           0  1  1
##   sensory                                                         0  0  0
##   services                                                        2  1  0
##   sets                                                            0  0  1
##   sexual                                                          1  0  1
##   shiny                                                           0  0  0
##   skills                                                          6  0  1
##   software                                                       12  2  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  1
##   status                                                          3  1  4
##   strategy                                                        0  0  0
##   strong                                                          1  1  0
##   supervise                                                       0  0  0
##   technical                                                       8  1  1
##   techniques                                                      1  1  1
##   testing                                                         0  0  0
##   tools                                                           3  0  2
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            1  1  0
##   valid                                                           0  0  0
##   various                                                         1  0  2
##   varying                                                         0  0  0
##   veteran                                                         2  1  2
##   visa                                                            0  0  1
##   visit                                                           0  1  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  1  1
##   workplace                                                       0  0  0
##   written                                                         1  0  1
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         3  1  0
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         0  0  0
##   analytical                                                      0  0  0
##   analyze                                                         0  0  1
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  0  0
##   best                                                            1  1  1
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  4
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     2  0  1
##   dataminer                                                       0  0  0
##   dedication                                                      1  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  0
##   excel                                                           1  0  0
##   exceptional                                                     1  1  0
##   execution                                                       1  0  3
##   external                                                        0  0  0
##   findings                                                        0  0  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  1  0
##   improve                                                         0  0  2
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  0  3
##   intermedia                                                      0  0  0
##   internal                                                        0  0  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          1  0  0
##   marketing                                                       0  0  0
##   master                                                          0  0  0
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           0  0  0
##   part                                                            2  1  2
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  0  0
##   procedures                                                      1  0  1
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  0  0
##   research                                                        2  0  2
##   resources                                                       0  0  4
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         1  0  0
##   service                                                         0  0  1
##   solving                                                         0  0  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  1  0
##   technologies                                                    6  0  1
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  0  0
##   understand                                                      0  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          2  0  0
##   fluent                                                          0  0  0
##   graduate                                                        1  0  0
##   insight                                                         0  0  1
##   problems                                                        0  0  1
##   pulling                                                         0  0  0
##   scope                                                           0  1  0
##   solve                                                           1  0  0
##   undergraduate                                                   1  0  0
##   1960                                                            1  0  0
##   access                                                          1  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          1  0  1
##   active                                                          1  0  0
##   actively                                                        0  0  0
##   additional                                                      1  1  0
##   adversarial                                                     0  0  0
##   advisory                                                        1  0  0
##   aerospace                                                       5  0  0
##   afraid                                                          0  0  0
##   air                                                             1  0  0
##   algorithm                                                       0  0  0
##   among                                                           1  0  0
##   angeles                                                         1  0  0
##   anomalies                                                       0  0  0
##   apply                                                           2  1  0
##   architectures                                                   0  0  0
##   areas                                                           1  0  1
##   aspiration                                                      1  0  0
##   asset                                                           1  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       2  0  1
##   beyond                                                          0  0  0
##   bigger                                                          1  0  0
##   bus                                                             0  0  0
##   career                                                          1  0  0
##   center                                                          1  0  1
##   challenges                                                      2  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     3  0  1
##   clandestine                                                     0  0  0
##   classification                                                  0  0  1
##   classifier                                                      0  0  0
##   clearance                                                       8  0  0
##   collection                                                      1  0  0
##   color                                                           1  1  1
##   comfort                                                         0  0  0
##   commercial                                                      1  1  0
##   commitment                                                      2  0  0
##   common                                                          1  0  0
##   communication                                                   1  0  0
##   communications                                                  1  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    1  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     4  0  0
##   creates                                                         1  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           1  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         1  0  0
##   detect                                                          0  0  0
##   developed                                                       1  0  0
##   differing                                                       1  0  0
##   discriminated                                                   1  0  0
##   diverse                                                         1  0  1
##   eager                                                           0  0  0
##   economic                                                        1  0  0
##   effective                                                       2  0  0
##   efforts                                                         0  0  1
##   else                                                            0  0  0
##   enforcement                                                     1  0  0
##   engineer                                                        1  0  0
##   engineers                                                       0  1  0
##   every                                                           1  0  1
##   everyone                                                        0  0  0
##   excited                                                         0  1  0
##   existence                                                       1  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  1
##   expression                                                      1  0  1
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      1  0  0
##   familiarity                                                     1  1  2
##   federally                                                       1  0  0
##   ffrdc                                                           1  0  0
##   filled                                                          1  0  0
##   focused                                                         2  0  1
##   force                                                           1  0  0
##   formulation                                                     0  0  0
##   funded                                                          1  0  0
##   gamechanging                                                    1  0  0
##   gnu                                                             0  0  0
##   government                                                      4  0  0
##   gpus                                                            0  0  0
##   greatest                                                        1  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        1  0  0
##   highly                                                          1  0  0
##   ideas                                                           1  1  0
##   identity                                                        1  0  1
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       1  0  0
##   independent                                                     1  0  0
##   innovators                                                      1  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          2  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             1  0  0
##   laboratory                                                      1  0  0
##   latest                                                          0  0  0
##   launch                                                          2  0  0
##   lead                                                            0  3  0
##   leaders                                                         1  0  0
##   let                                                             0  0  0
##   libraries                                                       1  0  0
##   limits                                                          0  0  0
##   literally                                                       1  0  0
##   los                                                             1  0  0
##   main                                                            0  0  0
##   major                                                           1  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  0
##   minimum                                                         0  2  3
##   modern                                                          0  0  0
##   much                                                            1  0  0
##   multiple                                                        0  0  1
##   nations                                                         1  0  0
##   nature                                                          0  0  0
##   nearest                                                         1  0  0
##   network                                                         0  0  1
##   neural                                                          1  0  2
##   neurons                                                         0  0  0
##   none                                                            2  0  0
##   objective                                                       0  0  0
##   obtain                                                          4  0  0
##   obtaining                                                       0  0  0
##   office                                                          1  1  0
##   operate                                                         1  0  0
##   opportunityaffirmative                                          1  0  0
##   others                                                          2  0  0
##   partner                                                         1  0  0
##   pass                                                            0  0  0
##   passion                                                         1  1  0
##   passionate                                                      0  0  0
##   pay                                                             1  0  0
##   perspectives                                                    1  0  0
##   platypus                                                        0  0  0
##   policy                                                          1  0  0
##   polygraph                                                       1  0  0
##   possible                                                        0  0  0
##   poster                                                          1  0  0
##   potentially                                                     0  0  0
##   preferred                                                       1  0  2
##   pride                                                           1  0  0
##   problemsolving                                                  1  0  0
##   producing                                                       1  0  0
##   prototypes                                                      3  1  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            1  0  0
##   readiness                                                       1  0  0
##   ready                                                           1  0  0
##   realworld                                                       0  0  0
##   reconnaissance                                                  1  0  0
##   regression                                                      1  0  1
##   regular                                                         1  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      1  0  0
##   requires                                                        2  0  1
##   requisition                                                     1  0  0
##   resource                                                        1  0  0
##   satellite                                                       0  0  0
##   schedule                                                        1  0  0
##   scientific                                                      2  0  0
##   scientists                                                      1  1  1
##   scikitlearn                                                     1  0  0
##   secret                                                          4  0  0
##   security                                                        9  0  0
##   segment                                                         1  0  0
##   sensitive                                                       0  0  0
##   serve                                                           1  0  0
##   share                                                           1  1  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           1  0  0
##   skilled                                                         1  0  0
##   small                                                           1  0  0
##   solid                                                           0  0  0
##   space                                                           6  0  0
##   spacerelated                                                    1  0  0
##   spanning                                                        1  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           1  0  0
##   staffed                                                         1  0  0
##   statement                                                       2  0  0
##   stateoftheart                                                   1  0  0
##   states                                                          1  0  1
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         1  0  0
##   superior                                                        1  0  0
##   supervised                                                      0  0  1
##   supplement                                                      1  0  0
##   system                                                          1  0  0
##   takes                                                           1  0  0
##   technologically                                                 1  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         1  0  0
##   title                                                           0  0  0
##   transcript                                                      1  0  0
##   transcripts                                                     1  0  0
##   trusted                                                         1  0  0
##   tssci                                                           0  0  0
##   type                                                            1  0  0
##   unconventional                                                  0  0  0
##   united                                                          1  0  1
##   university                                                      0  0  0
##   unsupervised                                                    0  0  1
##   valued                                                          1  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  1
##   well                                                            1  0  1
##   whose                                                           0  0  0
##   workforce                                                       1  0  0
##   working                                                         4  1  5
##   yes                                                             1  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         0  1  1
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  1
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        0  0  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           1  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        1  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      3  1  3
##   structured                                                      0  0  0
##   text                                                            0  0  0
##   theory                                                          0  1  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      0  0  0
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  1  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  1  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  1  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  0  1
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     2  1  2
##   mining                                                          2  0  0
##   modeling                                                        2  0  0
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  0
##   physics                                                         2  0  1
##   please                                                          1  1  0
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  1
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  0
##   sas                                                             0  0  1
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  1  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          0  0  5
##   tell                                                            0  0  0
##   test                                                            0  0  1
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  1
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  1
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  1
##   datadriven                                                      0  0  0
##   decision                                                        0  0  0
##   department                                                      1  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  0
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       1  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  1
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  1
##   informing                                                       0  0  0
##   infrastructure                                                  1  0  1
##   interpersonal                                                   1  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  1  1
##   tasks                                                           1  0  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  1  0
##   bayesian                                                        0  0  1
##   boosting                                                        0  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  1  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        1  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       0  0  0
##   demand                                                          0  0  1
##   demographic                                                     0  0  0
##   descriptive                                                     0  1  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      2  0  2
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  1
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        1  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  1
##   methodologies                                                   0  0  1
##   multivariate                                                    0  0  1
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        1  0  2
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            1  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  0  1
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  1
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          1  0  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         1  0  1
##   southern                                                        0  0  0
##   specific                                                        2  0  1
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         0  0  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  0  0
##   clustering                                                      0  0  1
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  0  2
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  1  0
##   existing                                                        0  0  1
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  0  0
##   fsa                                                             0  0  0
##   get                                                             0  0  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  1
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  1
##   masters                                                         0  0  1
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  1  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  0  0
##   phd                                                             0  0  1
##   points                                                          0  0  0
##   proven                                                          0  0  0
##   psychology                                                      0  0  1
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  1  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  0  1
##   visualization                                                   2  1  0
##   youll                                                           0  0  0
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  2  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  0  0
##   close                                                           0  0  0
##   cluster                                                         0  0  1
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  1  0
##   establishing                                                    0  0  1
##   estimate                                                        0  0  0
##   excellence                                                      1  0  2
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  2
##   indepth                                                         0  0  1
##   industries                                                      0  0  1
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        0  0  1
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  0
##   planning                                                        0  0  1
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      1  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  1
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  2
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         1  1  2
##   final                                                           0  0  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  1  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             1  1  1
##   statewide                                                       0  0  0
##   study                                                           0  0  1
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             2  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  1
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  1
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      1  0  0
##   automated                                                       0  0  0
##   aws                                                             0  0  0
##   careers                                                         0  1  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  2
##   describe                                                        0  0  0
##   develops                                                        0  0  1
##   devices                                                         0  1  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  1
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  1
##   liaison                                                         0  0  0
##   life                                                            0  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  1
##   located                                                         0  0  0
##   locations                                                       0  0  1
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  1
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  1
##   math                                                            0  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           2  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  1
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  1  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       0  0  0
##   section                                                         0  1  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  1
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       1  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  1
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            0  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  1  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  2  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  1
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  1
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  1
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         1  0  2
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  1  1
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  1  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          0  0  1
##   state                                                           1  1  1
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  1
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  1  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  0
##   domains                                                         0  0  1
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    1  1  1
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      1  0  0
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  2
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          1  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  1
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      1  1  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        1  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          1  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        1  2  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  0  3
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  1  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  1
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  1
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      1  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       1  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      1  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  1
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  1
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  2
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       2  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     1  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           1  0  2
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          1  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  1
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     1  0  1
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         1  0  0
##   grade                                                           0  0  0
##   growth                                                          0  1  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  1  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  1
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  1  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  1
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  1
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  1  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    2  0  1
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  4  0
##   bcgdvcom                                                        0  1  0
##   collaborating                                                   0  1  0
##   cultivate                                                       0  1  0
##   dashboard                                                       0  1  0
##   demonstrate                                                     0  1  0
##   deployed                                                        0  1  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  1  0
##   filtering                                                       0  2  0
##   flurry                                                          0  1  0
##   foundation                                                      0  1  0
##   graph                                                           0  1  0
##   graphing                                                        0  1  0
##   hadoopmapreduce                                                 0  1  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  1  0
##   interested                                                      0  1  0
##   interviews                                                      0  1  0
##   least                                                           4  0  1
##   listed                                                          0  1  0
##   mixpanel                                                        0  1  0
##   onpremises                                                      0  1  0
##   pair                                                            0  1  0
##   querying                                                        1  1  0
##   ranging                                                         0  1  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  1  0
##   resumes                                                         0  1  0
##   screened                                                        0  1  0
##   solely                                                          0  1  0
##   strategic                                                       0  1  3
##   talks                                                           0  1  0
##   though                                                          0  0  0
##   varied                                                          0  1  0
##   ventures                                                        0  5  0
##   website                                                         0  1  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       2  0  0
##   3103365432                                                      1  0  0
##   accommodation                                                   1  0  0
##   adapt                                                           1  0  0
##   analytic                                                        1  0  1
##   ancestry                                                        1  0  1
##   api                                                             1  0  0
##   applicationsystem                                               1  0  0
##   assessment                                                      1  0  0
##   caffetensorflow                                                 1  0  0
##   character                                                       1  0  0
##   childbirth                                                      1  0  0
##   collecting                                                      1  0  0
##   condition                                                       1  0  0
##   configuration                                                   1  0  0
##   consistent                                                      1  0  0
##   contact                                                         1  0  0
##   detailoriented                                                  1  0  0
##   disabled                                                        1  0  0
##   distributions                                                   1  0  0
##   email                                                           1  0  0
##   estimators                                                      1  0  0
##   extracurricular                                                 1  0  0
##   featuredriven                                                   1  0  0
##   forests                                                         1  0  0
##   forwith                                                         1  0  0
##   fromexposing                                                    1  0  0
##   gpa                                                             1  0  0
##   ieomailboxaeroorg                                               1  0  0
##   imagesignal                                                     1  0  0
##   institution                                                     2  0  0
##   interdisciplinary                                               1  0  0
##   interest                                                        1  0  0
##   interfaces                                                      1  0  0
##   json                                                            1  0  0
##   keen                                                            1  0  0
##   knearest                                                        1  0  0
##   leads                                                           1  0  1
##   library                                                         1  0  0
##   lifecycles                                                      1  0  0
##   likelihood                                                      1  0  0
##   maturity                                                        1  0  0
##   maximum                                                         1  0  0
##   missioncritical                                                 3  0  0
##   neighbors                                                       1  0  0
##   objectivity                                                     1  0  0
##   octavematlab                                                    1  0  0
##   opencv                                                          1  0  0
##   operating                                                       2  0  0
##   organizational                                                  2  0  0
##   participation                                                   1  0  0
##   path                                                            1  0  0
##   pertinent                                                       1  0  0
##   positions                                                       1  0  0
##   pregnancy                                                       1  0  0
##   presentation                                                    1  0  1
##   prevalence                                                      1  0  0
##   progress                                                        1  0  0
##   proofofconcept                                                  2  0  0
##   prove                                                           1  0  0
##   pursuing                                                        1  0  0
##   recognized                                                      2  0  0
##   resilient                                                       1  0  0
##   responsibility                                                  2  0  2
##   selected                                                        1  0  0
##   socially                                                        1  0  0
##   softwaresystem                                                  1  0  0
##   softwaresystems                                                 1  0  0
##   spent                                                           1  0  0
##   standards                                                       1  0  0
##   technically                                                     2  0  0
##   typically                                                       2  0  0
##   utilization                                                     1  0  0
##   viability                                                       1  0  0
##   virtualizationcloud                                             1  0  0
##   xml                                                             1  0  0
##   advantages                                                      0  1  0
##   anywhere                                                        0  1  0
##   careersbcgdvcomlearnmore                                        0  1  0
##   competencies                                                    0  1  0
##   cutting                                                         0  1  0
##   edge                                                            0  1  0
##   horizon                                                         0  1  0
##   manhattan                                                       0  2  0
##   truly                                                           0  1  0
##   accenture                                                       0  0 18
##   acceptance                                                      0  0  1
##   adapting                                                        0  0  1
##   affiliated                                                      0  0  1
##   affirmative                                                     0  0  1
##   alternate                                                       0  0  1
##   approach                                                        0  0  1
##   architect                                                       0  0  1
##   arrest                                                          0  0  1
##   aspirant                                                        0  0  1
##   assesses                                                        0  0  1
##   assets                                                          0  0  1
##   assignments                                                     0  0  1
##   basic                                                           0  0  1
##   cases                                                           0  0  2
##   centre                                                          0  0  1
##   certifications                                                  0  0  1
##   chain                                                           0  0  2
##   conceptual                                                      0  0  2
##   conceptualize                                                   0  0  1
##   conducted                                                       0  0  1
##   considered                                                      0  0  1
##   contribution                                                    0  0  1
##   corner                                                          0  0  1
##   delivers                                                        0  0  1
##   determine                                                       0  0  1
##   disclose                                                        0  0  1
##   eligible                                                        0  0  1
##   employed                                                        0  0  1
##   enhancing                                                       0  0  1
##   executive                                                       0  0  2
##   expunged                                                        0  0  1
##   factors                                                         0  0  1
##   femalesminoritiesveteransindividuals                            0  0  1
##   firsttomarket                                                   0  0  1
##   flink                                                           0  0  1
##   follows                                                         0  0  1
##   fulfilment                                                      0  0  1
##   fundamental                                                     0  0  1
##   fuzzy                                                           0  0  1
##   globe                                                           0  0  2
##   handling                                                        0  0  1
##   human                                                           0  0  4
##   identifies                                                      0  0  2
##   indicators                                                      0  0  1
##   industrialorganizational                                        0  0  1
##   interacts                                                       0  0  1
##   intermediate                                                    0  0  1
##   iot                                                             0  0  1
##   julia                                                           0  0  1
##   labs                                                            0  0  1
##   logic                                                           0  0  1
##   machinelearning                                                 0  0  1
##   mark                                                            0  0  1
##   markov                                                          0  0  1
##   matters                                                         0  0  1
##   men                                                             0  0  1
##   mobility                                                        0  0  1
##   nonparametric                                                   0  0  1
##   obligated                                                       0  0  1
##   outcome                                                         0  0  1
##   pivot                                                           0  0  1
##   projectbased                                                    0  0  1
##   records                                                         0  0  1
##   redefine                                                        0  0  1
##   reliability                                                     0  0  1
##   robotics                                                        0  0  1
##   scheduling                                                      0  0  1
##   sealed                                                          0  0  1
##   shall                                                           0  0  1
##   situations                                                      0  0  1
##   sized                                                           0  0  1
##   solves                                                          0  0  1
##   source                                                          0  0  1
##   stochastic                                                      0  0  1
##   supply                                                          0  0  2
##   term                                                            0  0  1
##   variable                                                        0  0  1
##   versed                                                          0  0  1
##   women                                                           0  0  1
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            30 31 32
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      0  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            2  0  1
##   analysis                                                       12  5  2
##   anova                                                           4  0  0
##   app                                                             0  1  0
##   apple                                                           0  0  0
##   applying                                                        1  0  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  0  0
##   base                                                            0  0  0
##   become                                                          0  2  0
##   benefits                                                        0  0  1
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        0  1  0
##   business                                                        2  5  5
##   calculate                                                       0  0  0
##   can                                                             1  0  1
##   candidate                                                       0  0  0
##   canonical                                                       0  0  0
##   capacity                                                        0  2  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  0  0
##   coding                                                          0  0  0
##   commands                                                        0  0  0
##   communicate                                                     2  0  0
##   communicator                                                    0  0  0
##   companies                                                       0  0  2
##   company                                                         1  2  1
##   compelling                                                      0  1  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  0  0
##   creating                                                        0  1  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                           23 12 13
##   dataset                                                         2  0  0
##   deep                                                            2  0  0
##   delivering                                                      0  0  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  3  1
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  1
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        1  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                     10  9  6
##   explain                                                         0  0  0
##   feature                                                         2  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            1  0  0
##   functions                                                       1  0  0
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  0
##   great                                                           0  1  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  1
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  0  2
##   identifying                                                     1  0  0
##   includes                                                        0  0  0
##   including                                                       1  0  1
##   increased                                                       0  0  0
##   industry                                                        0  2  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        3  0  0
##   largest                                                         0  0  0
##   learn                                                           0  0  0
##   learning                                                       13  0  2
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        1  0  0
##   lidia                                                           0  0  0
##   like                                                            0  0  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  1  1
##   machine                                                        11  0  2
##   maintainable                                                    0  0  0
##   make                                                            1  0  1
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  0  0
##   metrics                                                         0  0  0
##   mission                                                         2  0  0
##   mobile                                                          0  0  0
##   model                                                           0  0  0
##   models                                                          4  8  1
##   movement                                                        0  0  0
##   need                                                            0  0  0
##   next                                                            0  0  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             2  0  0
##   opportunities                                                   0  0  3
##   optimization                                                    0  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  0
##   overall                                                         0  1  1
##   packages                                                        0  1  0
##   people                                                          1  0  2
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  0
##   point                                                           0  0  0
##   potential                                                       4  0  0
##   power                                                           0  0  1
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         1  0  1
##   processing                                                      3  0  0
##   product                                                         0  0  0
##   prototype                                                       0  0  0
##   provide                                                         4  0  0
##   python                                                          4  1  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  1  0
##   sample                                                          0  0  0
##   science                                                        13  3  0
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        1  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  1
##   specifically                                                    0  0  1
##   splits                                                          0  0  0
##   sql                                                             0  1  1
##   startup                                                         0  0  0
##   statistical                                                     0  4  2
##   strategies                                                      0  1  0
##   success                                                         1  0  0
##   systems                                                         5  0  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            4  3  3
##   teams                                                           2  1  0
##   tech                                                            0  0  0
##   technology                                                      2  2  1
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            3  0  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        1  0  0
##   training                                                        0  0  1
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  1
##   transparency                                                    1  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   0  1  2
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  0  0
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          2  0  0
##   visualizations                                                  0  1  0
##   way                                                             0  0  0
##   web                                                             0  1  0
##   whatever                                                        0  0  0
##   within                                                          1  4  1
##   words                                                           0  0  0
##   work                                                            4  1  3
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           3  1  2
##   360b                                                            0  0  0
##   algorithms                                                      0  2  0
##   analytics                                                       5  4  2
##   andor                                                           0  0  0
##   bachelor                                                        0  0  1
##   basis                                                           1  0  0
##   behavior                                                        0  6  0
##   believe                                                         1  0  0
##   big                                                             0  0  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  0  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         2  3  0
##   computation                                                     0  0  0
##   content                                                         0  0  0
##   conversion                                                      0  0  0
##   critical                                                        1  0  0
##   customer                                                        1  0  0
##   database                                                        1  0  2
##   decided                                                         0  0  0
##   decisions                                                       2  0  0
##   degree                                                          4  0  1
##   deliver                                                         0  0  0
##   design                                                          0  2  0
##   discovery                                                       0  0  0
##   distributed                                                     0  0  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        1  0  1
##   employment                                                      3  0  1
##   engine                                                          0  0  0
##   environment                                                     5  0  0
##   equal                                                           3  0  1
##   field                                                           0  1  0
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          0  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  1  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             2  0  0
##   join                                                            1  1  2
##   kafka                                                           0  0  0
##   largescale                                                      0  0  1
##   leading                                                         3  2  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  0
##   opportunity                                                     3  0  2
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  5  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      3  3  1
##   preferably                                                      0  0  0
##   production                                                      0  0  0
##   products                                                        2  3  0
##   programming                                                     2  0  2
##   publisher                                                       0  0  0
##   qualifications                                                  2  1  0
##   quantitative                                                    0  1  1
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 0  1  1
##   related                                                         5  0  1
##   requirements                                                    0  0  0
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       2  1  3
##   senior                                                          3  0  1
##   serving                                                         0  0  0
##   set                                                             0  0  0
##   sites                                                           0  0  0
##   solutions                                                       2  0  2
##   something                                                       0  0  0
##   spark                                                           0  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         5  0  1
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            1  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          2  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  1
##   value                                                           2  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           2  0  2
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0 12  0
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        0  0  2
##   age                                                             0  0  1
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  1
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      1  0  0
##   application                                                     0  0  0
##   applications                                                    0  0  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  1
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       1  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  1
##   capabilities                                                    2  0  1
##   capgemini                                                       0  0  0
##   changing                                                        0  0  0
##   characteristic                                                  0  0  0
##   click                                                           0  0  0
##   clients                                                         0  0  0
##   collaborate                                                     0  0  0
##   comes                                                           0  0  0
##   computer                                                        4  0  0
##   consider                                                        0  0  0
##   consideration                                                   1  0  0
##   consulting                                                      0  0  1
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        1  2  0
##   delivery                                                        0  0  0
##   demands                                                         0  0  0
##   deploy                                                          0  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  1
##   develop                                                        10  3  0
##   developer                                                       1  0  0
##   developing                                                      1  0  1
##   development                                                     3  0  0
##   digital                                                         0  4  0
##   disabilities                                                    0  0  0
##   disability                                                      1  0  1
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  1  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     6  1  1
##   enhance                                                         0  0  0
##   ensuring                                                        1  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        1  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  2  0
##   expertise                                                       1  0  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  1  1
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  1
##   functional                                                      0  0  1
##   future                                                          0  0  0
##   gathering                                                       0  0  0
##   gender                                                          2  0  1
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  0  2
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  4  2
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  1
##   include                                                         0  0  1
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     1  0  0
##   innovation                                                      0  0  0
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  0
##   junior                                                          1  0  1
##   knowledge                                                       0  1  0
##   landscape                                                       0  0  0
##   languages                                                       0  0  0
##   large                                                           3  2  1
##   law                                                             2  0  2
##   leader                                                          1  0  0
##   leadership                                                      0  0  1
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          1  0  0
##   management                                                      1  0  2
##   manipulation                                                    0  0  0
##   manner                                                          0  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  1
##   matter                                                          2  3  0
##   may                                                             0  0  1
##   meetings                                                        0  0  0
##   members                                                         0  0  0
##   mental                                                          0  0  0
##   mentor                                                          0  0  0
##   mentoring                                                       1  0  0
##   methods                                                         1  0  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  0
##   national                                                        7  0  1
##   necessary                                                       0  0  0
##   new                                                             1  4  0
##   now                                                             0  0  0
##   operations                                                      0  0  0
##   organizations                                                   0  0  0
##   orientation                                                     1  0  1
##   origin                                                          1  0  1
##   performed                                                       0  0  0
##   personnel                                                       2  0  0
##   physical                                                        0  0  0
##   platforms                                                       0  4  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        1  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       0  2  0
##   proficiency                                                     0  0  0
##   proficient                                                      0  0  1
##   program                                                         2  0  0
##   programmers                                                     0  0  0
##   programs                                                        6  0  0
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        1  0  0
##   protected                                                       1  0  2
##   provided                                                        1  0  0
##   qualified                                                       1  0  0
##   queuing                                                         0  0  0
##   race                                                            1  0  1
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         1  0  0
##   referenced                                                      0  0  0
##   regard                                                          0  0  0
##   release                                                         0  0  0
##   relevant                                                        0  0  0
##   religion                                                        1  0  1
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  0  0
##   require                                                         0  0  1
##   required                                                        2  1  1
##   requirement                                                     1  0  0
##   responsibilities                                                1  1  1
##   responsible                                                     0  1  1
##   results                                                         0  3  1
##   revenues                                                        0  0  0
##   review                                                          1  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            0  1  0
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        1  0  2
##   sets                                                            2  2  0
##   sexual                                                          1  0  1
##   shiny                                                           0  0  0
##   skills                                                         10  1  1
##   software                                                        1  0  0
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          2  0  2
##   strategy                                                        0  0  0
##   strong                                                          2  1  0
##   supervise                                                       0  0  0
##   technical                                                       5  0  1
##   techniques                                                      8  0  1
##   testing                                                         0  0  0
##   tools                                                           0  2  3
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  4  0
##   valid                                                           0  0  0
##   various                                                         0  1  0
##   varying                                                         0  0  0
##   veteran                                                         1  0  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  0  0
##   written                                                         2  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                        12  3  0
##   advertising                                                     0  3  0
##   always                                                          0  0  1
##   analyst                                                         0  0  0
##   analytical                                                      1  1  1
##   analyze                                                         0  2  0
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  0  0
##   best                                                            0  2  0
##   better                                                          0  0  1
##   blended                                                         0  0  0
##   campaigns                                                       0  1  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  1
##   crossfunctional                                                 0  1  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      1  0  0
##   direct                                                          0  1  0
##   efficiency                                                      0  0  0
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       1  0  0
##   external                                                        0  2  0
##   findings                                                        1  0  1
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  0  0
##   improve                                                         2  4  0
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    0  2  0
##   intermedia                                                      0  0  0
##   internal                                                        0  2  0
##   investments                                                     0  0  0
##   manager                                                         0  1  0
##   market                                                          2  0  0
##   marketing                                                       0  0  0
##   master                                                          0  0  0
##   media                                                           0  0  0
##   microsoft                                                       0  0  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           0  0  0
##   part                                                            3  0  1
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       1  2  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  0  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  0  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        1  0  1
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         2  0  0
##   research                                                        4  2  0
##   resources                                                       0  0  1
##   resultsoriented                                                 0  0  0
##   return                                                          0  0  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         0  0  0
##   service                                                         1  0  0
##   solving                                                         0  0  1
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  1  1
##   technologies                                                    0  0  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          1  0  0
##   understand                                                      0  2  0
##   vital                                                           0  0  0
##   writing                                                         0  1  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  0
##   problems                                                        0  0  0
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           1  0  0
##   undergraduate                                                   0  0  0
##   1960                                                            1  0  0
##   access                                                          1  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          1  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      3  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        1  0  0
##   aerospace                                                       3  0  0
##   afraid                                                          0  0  0
##   air                                                             1  0  0
##   algorithm                                                       0  0  0
##   among                                                           1  1  0
##   angeles                                                         1  0  0
##   anomalies                                                       1  0  0
##   apply                                                           3  0  1
##   architectures                                                   0  0  0
##   areas                                                           1  1  2
##   aspiration                                                      1  0  0
##   asset                                                           4  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       2  0  0
##   beyond                                                          0  0  0
##   bigger                                                          1  0  0
##   bus                                                             0  0  0
##   career                                                          1  0  0
##   center                                                          1  0  0
##   challenges                                                      2  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  1
##   clandestine                                                     1  0  0
##   classification                                                  2  0  0
##   classifier                                                      0  0  0
##   clearance                                                       5  0  0
##   collection                                                      1  0  0
##   color                                                           1  0  1
##   comfort                                                         0  0  0
##   commercial                                                      2  0  0
##   commitment                                                      1  0  0
##   common                                                          1  0  0
##   communication                                                   0  1  0
##   communications                                                  1  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         1  0  0
##   corporation                                                     3  0  0
##   creates                                                         1  0  0
##   curious                                                         0  1  0
##   current                                                         0  0  0
##   cyber                                                           1  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         1  0  1
##   detect                                                          0  0  0
##   developed                                                       1  0  0
##   differing                                                       1  0  0
##   discriminated                                                   1  0  0
##   diverse                                                         1  0  0
##   eager                                                           0  0  0
##   economic                                                        1  0  0
##   effective                                                       1  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     1  0  0
##   engineer                                                        1  0  0
##   engineers                                                       0  0  0
##   every                                                           1  0  0
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       1  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      1  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      1  0  0
##   familiarity                                                     0  0  0
##   federally                                                       1  0  0
##   ffrdc                                                           1  0  0
##   filled                                                          0  0  0
##   focused                                                         1  0  0
##   force                                                           1  0  0
##   formulation                                                     0  0  0
##   funded                                                          1  0  0
##   gamechanging                                                    1  0  0
##   gnu                                                             0  0  0
##   government                                                      1  0  0
##   gpus                                                            0  0  0
##   greatest                                                        1  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        1  0  0
##   highly                                                          1  0  0
##   ideas                                                           1  0  0
##   identity                                                        1  0  1
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       1  0  0
##   independent                                                     1  0  1
##   innovators                                                      1  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             1  0  0
##   laboratory                                                      1  0  0
##   latest                                                          0  0  0
##   launch                                                          4  0  0
##   lead                                                            0  0  0
##   leaders                                                         1  0  0
##   let                                                             0  0  0
##   libraries                                                       0  0  0
##   limits                                                          0  0  0
##   literally                                                       1  0  0
##   los                                                             1  0  0
##   main                                                            0  0  0
##   major                                                           1  0  0
##   meet                                                            0  0  1
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  1
##   minds                                                           0  0  0
##   minimum                                                         0  0  2
##   modern                                                          0  0  0
##   much                                                            1  0  0
##   multiple                                                        2  0  0
##   nations                                                         1  0  0
##   nature                                                          0  0  0
##   nearest                                                         1  0  0
##   network                                                         0  1  0
##   neural                                                          0  0  1
##   neurons                                                         0  0  0
##   none                                                            2  0  0
##   objective                                                       0  0  0
##   obtain                                                          2  0  0
##   obtaining                                                       0  0  0
##   office                                                          1  0  0
##   operate                                                         1  0  0
##   opportunityaffirmative                                          1  0  0
##   others                                                          1  0  0
##   partner                                                         1  0  1
##   pass                                                            0  0  0
##   passion                                                         1  0  0
##   passionate                                                      0  0  0
##   pay                                                             1  0  0
##   perspectives                                                    1  0  0
##   platypus                                                        0  0  0
##   policy                                                          1  0  0
##   polygraph                                                       1  0  0
##   possible                                                        0  0  0
##   poster                                                          1  0  0
##   potentially                                                     0  0  0
##   preferred                                                       4  0  0
##   pride                                                           1  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       1  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            1  0  0
##   readiness                                                       1  0  0
##   ready                                                           1  0  0
##   realworld                                                       0  1  0
##   reconnaissance                                                  1  0  0
##   regression                                                      2  0  1
##   regular                                                         1  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      1  0  0
##   requires                                                        0  0  0
##   requisition                                                     1  0  0
##   resource                                                        1  0  0
##   satellite                                                       0  0  0
##   schedule                                                        2  0  0
##   scientific                                                      2  0  0
##   scientists                                                      1  0  0
##   scikitlearn                                                     2  0  0
##   secret                                                          3  0  0
##   security                                                        4  0  0
##   segment                                                         1  1  0
##   sensitive                                                       0  0  0
##   serve                                                           2  0  0
##   share                                                           1  0  0
##   simulation                                                      2  0  0
##   simultaneously                                                  0  0  0
##   since                                                           1  0  0
##   skilled                                                         1  0  0
##   small                                                           0  0  0
##   solid                                                           0  0  0
##   space                                                          10  0  0
##   spacerelated                                                    1  0  0
##   spanning                                                        1  0  0
##   specialist                                                      2  0  0
##   specialized                                                     0  0  0
##   staff                                                           2  0  0
##   staffed                                                         1  0  0
##   statement                                                       2  0  0
##   stateoftheart                                                   1  0  0
##   states                                                          1  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  1
##   studies                                                         1  0  0
##   superior                                                        1  0  0
##   supervised                                                      0  0  0
##   supplement                                                      1  0  0
##   system                                                          2  0  1
##   takes                                                           1  0  0
##   technologically                                                 1  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         1  0  0
##   title                                                           1  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         1  0  0
##   tssci                                                           0  0  0
##   type                                                            1  0  0
##   unconventional                                                  0  0  0
##   united                                                          1  0  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          1  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            1  2  0
##   whose                                                           0  0  0
##   workforce                                                       1  0  3
##   working                                                         0  2  0
##   yes                                                             1  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  1  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         2  1  0
##   extract                                                         0  1  0
##   facebook                                                        0  1  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        0  4  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           2  0  0
##   pandas                                                          2  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      4  1  1
##   structured                                                      0  0  1
##   text                                                            0  0  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    1  0  1
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  1
##   accelerate                                                      0  0  0
##   actionable                                                      0  1  0
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          1  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  0  0
##   heuristics                                                      0  0  0
##   high                                                            2  0  0
##   identifybuild                                                   0  0  0
##   impact                                                          1  0  0
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  2  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     2  0  0
##   mining                                                          0  2  1
##   modeling                                                        2  3  2
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  2  0
##   physics                                                         2  0  0
##   please                                                          0  0  0
##   practiced                                                       0  0  0
##   present                                                         1  2  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  0
##   sas                                                             2  0  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      2  1  0
##   talent                                                          0  0  1
##   tell                                                            0  0  0
##   test                                                            0  2  0
##   told                                                            0  0  0
##   translating                                                     0  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  0
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  0
##   datadriven                                                      0  0  0
##   decision                                                        0  2  2
##   department                                                      1  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  1  0
##   evaluate                                                        0  0  0
##   excellent                                                       0  1  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  1
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  1  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  0
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  2  0
##   manipulating                                                    0  0  1
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         2  0  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  1  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            1  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         2  3  0
##   tasks                                                           0  0  0
##   units                                                           0  0  0
##   usage                                                           0  1  0
##   visual                                                          0  0  1
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        2  1  0
##   bayesian                                                        2  0  0
##   boosting                                                        0  0  1
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  2  0
##   copper                                                          0  0  0
##   customers                                                       4  0  0
##   demand                                                          0  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      2  0  1
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     5  0  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  1  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  1
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  1  0
##   offers                                                          0  0  0
##   oracle                                                          0  1  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       1  0  2
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  1
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          2  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         2  0  0
##   southern                                                        0  0  0
##   specific                                                        0  1  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  1  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         0  0  1
##   vector                                                          0  0  0
##   video                                                           0  1  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  0  0
##   catered                                                         0  0  0
##   clear                                                           0  0  0
##   clustering                                                      2  0  1
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       0  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  1  0
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  0  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  0  0
##   fsa                                                             0  0  0
##   get                                                             0  0  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  1  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         3  0  0
##   nlp                                                             0  0  0
##   optimize                                                        0  3  0
##   optimizing                                                      0  1  0
##   phd                                                             2  1  0
##   points                                                          0  0  0
##   proven                                                          2  1  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  1  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  0  0
##   transactions                                                    0  0  1
##   tune                                                            0  0  0
##   unit                                                            0  0  2
##   unlimited                                                       0  0  0
##   used                                                            0  2  0
##   visualization                                                   2  0  2
##   youll                                                           0  0  0
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          1  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  0  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  1  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  0  1
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  1  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        0  0  0
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  0
##   planning                                                        2  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  0  0
##   selection                                                       2  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  1  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  1
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  1  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       1  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  2
##   faculty                                                         0  0  0
##   federal                                                         0  0  1
##   final                                                           0  0  0
##   health                                                          1  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  1
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  0  1
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      1  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  0
##   automated                                                       1  0  0
##   aws                                                             0  0  0
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            1  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  2  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          1  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  0  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  2  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  0  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         1  0  0
##   scripting                                                       0  0  0
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  1  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  1  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  1
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            0  1  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  1  1
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      1  2  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  1
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     2  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      1  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  0  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  2  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  1
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  1  0
##   social                                                          0  1  0
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       1  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        1  0  0
##   distribution                                                    0  0  0
##   domains                                                         3  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  1
##   entertainment                                                   0  0  2
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  1
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       0  0  0
##   improvements                                                    0  1  0
##   individual                                                      0  0  0
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  1
##   reach                                                           0  2  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  1
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  1
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       2  0  0
##   applied                                                         2  0  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  3  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  2
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  1  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  1
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  1
##   utilities                                                       0  0  0
##   variance                                                        4  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          1  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  3  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  1
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     7  0  1
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       1  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  2  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  2
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   2  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        1  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  3  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  1  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  1
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  1  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  1  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  1  0
##   brand                                                           0  1  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         2  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  3  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  2  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  1  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           2  0  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       1  1  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          2  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        1  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  1  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  1  0
##   organizational                                                  1  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  1
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  1  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       2  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  1
##   human                                                           0  0  1
##   identifies                                                      0  0  0
##   indicators                                                      1  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  1
##   obligated                                                       0  0  0
##   outcome                                                         1  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         1  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  1  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        1  0  0
##   aaid                                                            3  0  0
##   analyticsleading                                                1  0  0
##   anomaly                                                         1  0  0
##   architecting                                                    1  0  0
##   arima                                                           2  0  0
##   arma                                                            2  0  0
##   articulating                                                    2  0  0
##   assessments                                                     1  0  0
##   carlo                                                           2  0  0
##   categorical                                                     2  0  0
##   categorize                                                      1  0  0
##   civil                                                           3  0  0
##   collect                                                         1  0  0
##   comprised                                                       1  0  0
##   conference                                                      2  0  0
##   consistently                                                    2  0  0
##   correlation                                                     1  0  0
##   crossdomain                                                     1  0  0
##   crossprogram                                                    1  0  0
##   dimension                                                       2  0  0
##   dod                                                             2  0  0
##   eight                                                           1  0  0
##   emphasis                                                        1  0  0
##   engrg                                                           1  0  0
##   followup                                                        1  0  0
##   forming                                                         2  0  0
##   frontend                                                        1  0  0
##   implications                                                    1  0  0
##   issue                                                           1  0  0
##   languagedevelopment                                             2  0  0
##   monte                                                           2  0  0
##   multidisciplinary                                               1  0  0
##   narx                                                            2  0  0
##   papersarticles                                                  2  0  0
##   preference                                                      2  0  0
##   programmatic                                                    5  0  0
##   published                                                       2  0  0
##   reduction                                                       2  0  0
##   relate                                                          1  0  0
##   resulting                                                       2  0  0
##   risk                                                            2  0  0
##   sci                                                             2  0  0
##   scipy                                                           2  0  0
##   significant                                                     2  0  0
##   specialists                                                     1  0  0
##   steward                                                         1  0  0
##   summarize                                                       1  0  0
##   tailoring                                                       1  0  0
##   threats                                                         1  0  0
##   toolset                                                         1  0  0
##   twelve                                                          1  0  0
##   vehicle                                                         1  0  0
##   adobe                                                           0  1  0
##   affinities                                                      0  1  0
##   asks                                                            0  1  0
##   audience                                                        0  4  0
##   audiences                                                       0  2  1
##   bigpicture                                                      0  1  0
##   bluekai                                                         0  1  0
##   bottom                                                          0  1  0
##   businesssavvy                                                   0  1  0
##   collaboratively                                                 0  1  0
##   confidently                                                     0  1  0
##   conscientious                                                   0  1  0
##   controlled                                                      0  2  0
##   depth                                                           0  1  0
##   disney                                                          0  3  0
##   distill                                                         0  2  0
##   dmp                                                             0  1  0
##   dmps                                                            0  1  0
##   dtci                                                            0  4  0
##   examining                                                       0  1  0
##   handsonexecution                                                0  1  0
##   hivehadoopcloud                                                 0  1  0
##   hypotheses                                                      0  2  0
##   intellectually                                                  0  1  0
##   international                                                   0  1  0
##   lookalike                                                       0  1  0
##   mathstatistics                                                  0  1  0
##   mba                                                             0  1  0
##   measurable                                                      0  1  0
##   monetization                                                    0  3  0
##   multichannel                                                    0  2  0
##                                                                 Docs
## Terms                                                            33 34 35
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  0  0
##   activities                                                      0  0  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  1  0
##   analysis                                                        1  3  2
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  0  0
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  1  0
##   base                                                            0  0  0
##   become                                                          0  0  1
##   benefits                                                        0  0  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        1  2  0
##   business                                                        0  1  6
##   calculate                                                       0  0  0
##   can                                                             0  0  0
##   candidate                                                       0  1  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  0  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  0  0
##   coding                                                          1  0  0
##   commands                                                        0  0  0
##   communicate                                                     0  0  1
##   communicator                                                    0  0  0
##   companies                                                       0  0  0
##   company                                                         0  0  1
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          1  0  0
##   creating                                                        1  1  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                            6 16  5
##   dataset                                                         0  0  0
##   deep                                                            0  0  0
##   delivering                                                      0  0  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  0  0
##   drayage                                                         0  0  0
##   drive                                                           0  2  0
##   driven                                                          0  0  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  1  0
##   execute                                                         0  1  0
##   experience                                                      4  6  4
##   explain                                                         0  0  0
##   feature                                                         0  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  0  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  0  0
##   freight                                                         0  0  0
##   full                                                            0  0  0
##   functions                                                       0  0  0
##   general                                                         0  0  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  1
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  0  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  2  0
##   identifying                                                     0  1  0
##   includes                                                        0  0  0
##   including                                                       0  6  0
##   increased                                                       0  0  0
##   industry                                                        0  1  1
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  0  0
##   largest                                                         0  1  0
##   learn                                                           0  0  1
##   learning                                                        6  0  0
##   led                                                             0  0  0
##   level                                                           0  2  0
##   leverage                                                        0  0  0
##   lidia                                                           0  0  0
##   like                                                            0  0  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  1  0
##   machine                                                         7  0  0
##   maintainable                                                    0  0  0
##   make                                                            0  0  0
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  0  0
##   metrics                                                         0  0  0
##   mission                                                         0  0  0
##   mobile                                                          0  0  0
##   model                                                           0  0  0
##   models                                                          6  3  1
##   movement                                                        0  0  0
##   need                                                            1  0  0
##   next                                                            0  1  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             0  1  0
##   opportunities                                                   0  1  0
##   optimization                                                    0  0  0
##   otherwise                                                       0  0  0
##   outcomes                                                        0  0  0
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          0  0  0
##   person                                                          0  1  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  0
##   platform                                                        0  0  1
##   point                                                           0  1  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      0  0  0
##   product                                                         0  2  0
##   prototype                                                       0  0  0
##   provide                                                         1  0  1
##   python                                                          2  1  0
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       0  3  2
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  0
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  0  0
##   sample                                                          0  0  0
##   science                                                         3  6  0
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  1  0
##   splits                                                          0  0  0
##   sql                                                             1  1  1
##   startup                                                         1  0  0
##   statistical                                                     1  2  1
##   strategies                                                      0  0  0
##   success                                                         0  2  1
##   systems                                                         0  0  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            3  7  1
##   teams                                                           0  0  1
##   tech                                                            0  0  0
##   technology                                                      0  1  0
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            1  0  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   2  0  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  0  1
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  0  0
##   visualizations                                                  0  0  1
##   way                                                             1  0  0
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          0  0  0
##   words                                                           0  0  0
##   work                                                            2  2  1
##   worked                                                          0  0  0
##   works                                                           0  0  0
##   yan                                                             0  0  0
##   years                                                           1  1  2
##   360b                                                            0  0  0
##   algorithms                                                      3  0  0
##   analytics                                                       2  0  4
##   andor                                                           0  2  0
##   bachelor                                                        0  0  0
##   basis                                                           0  0  0
##   behavior                                                        1  0  0
##   believe                                                         0  0  0
##   big                                                             1  0  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           1  0  0
##   committed                                                       0  0  0
##   comparable                                                      0  0  0
##   complex                                                         1  2  0
##   computation                                                     0  0  0
##   content                                                         0  0  0
##   conversion                                                      2  0  0
##   critical                                                        0  0  1
##   customer                                                        0  0  0
##   database                                                        0  0  0
##   decided                                                         0  0  0
##   decisions                                                       0  0  0
##   degree                                                          1  2  0
##   deliver                                                         1  0  0
##   design                                                          0  2  0
##   discovery                                                       0  0  0
##   distributed                                                     1  0  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  0  0
##   employment                                                      0  0  0
##   engine                                                          0  0  0
##   environment                                                     0  0  0
##   equal                                                           0  0  0
##   field                                                           0  2  1
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          1  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           0  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  1  0
##   inclusive                                                       0  0  0
##   increase                                                        0  0  1
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  0  0
##   innovative                                                      0  0  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             0  0  0
##   join                                                            0  1  0
##   kafka                                                           0  0  0
##   largescale                                                      0  0  0
##   leading                                                         1  0  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           0  0  0
##   online                                                          0  0  0
##   opportunity                                                     0  1  0
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  0  1
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      3  1  0
##   preferably                                                      0  0  0
##   production                                                      1  0  0
##   products                                                        0  1  0
##   programming                                                     0  0  0
##   publisher                                                       0  0  0
##   qualifications                                                  0  2  1
##   quantitative                                                    0  2  1
##   query                                                           0  0  0
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  0
##   recommendations                                                 0  2  0
##   related                                                         0  2  1
##   requirements                                                    0  0  0
##   robust                                                          0  1  0
##   scaling                                                         0  0  0
##   scientist                                                       0  4  0
##   senior                                                          0  2  0
##   serving                                                         0  0  0
##   set                                                             0  1  0
##   sites                                                           0  0  0
##   solutions                                                       0  1  0
##   something                                                       0  0  0
##   spark                                                           1  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         0  0  0
##   taboola                                                         0  0  0
##   targeting                                                       0  1  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          1  0  0
##   usa                                                             0  0  0
##   users                                                           0  0  0
##   value                                                           1  0  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           0  0  0
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          0  1  0
##   address                                                         1  0  0
##   adherence                                                       0  0  0
##   advanced                                                        3  1  1
##   age                                                             0  0  0
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        1  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  0
##   application                                                     0  0  0
##   applications                                                    0  2  0
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  0
##   capgemini                                                       0  0  0
##   changing                                                        1  0  0
##   characteristic                                                  0  0  0
##   click                                                           0  0  0
##   clients                                                         2  2  2
##   collaborate                                                     1  0  1
##   comes                                                           0  0  0
##   computer                                                        1  1  0
##   consider                                                        0  0  0
##   consideration                                                   0  0  0
##   consulting                                                      0  1  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        1  1  0
##   delivery                                                        0  2  0
##   demands                                                         0  0  0
##   deploy                                                          0  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  1  0
##   develop                                                         2  3  1
##   developer                                                       0  0  0
##   developing                                                      1  0  1
##   development                                                     0  1  0
##   digital                                                         0  0  1
##   disabilities                                                    0  0  0
##   disability                                                      0  0  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     2  0  0
##   enhance                                                         0  0  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     0  0  0
##   expert                                                          0  0  0
##   expertise                                                       1  1  1
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  0  0
##   forefront                                                       0  0  0
##   frameworks                                                      0  0  0
##   function                                                        0  0  0
##   functional                                                      0  0  0
##   future                                                          0  0  0
##   gathering                                                       0  0  0
##   gender                                                          0  0  0
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  0  0
##   guiding                                                         0  1  0
##   hardship                                                        0  0  0
##   help                                                            0  0  0
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    1  0  0
##   include                                                         0  1  0
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     0  0  0
##   innovation                                                      0  0  0
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  0  0
##   junior                                                          0  2  1
##   knowledge                                                       1  0  1
##   landscape                                                       0  0  0
##   languages                                                       0  0  0
##   large                                                           1  3  0
##   law                                                             0  0  0
##   leader                                                          0  0  1
##   leadership                                                      1  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  2  0
##   management                                                      0  1  0
##   manipulation                                                    0  0  0
##   manner                                                          0  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  0  0
##   matter                                                          0  0  0
##   may                                                             0  0  0
##   meetings                                                        0  0  0
##   members                                                         0  3  0
##   mental                                                          0  0  0
##   mentor                                                          0  1  0
##   mentoring                                                       0  1  0
##   methods                                                         1  0  0
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  0  0
##   national                                                        0  0  0
##   necessary                                                       0  0  0
##   new                                                             0  3  1
##   now                                                             0  0  0
##   operations                                                      0  0  0
##   organizations                                                   0  0  0
##   orientation                                                     0  0  0
##   origin                                                          0  0  0
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        0  0  0
##   platforms                                                       0  2  0
##   policies                                                        0  0  0
##   pose                                                            0  0  0
##   position                                                        0  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     0  1  0
##   proficient                                                      0  0  0
##   program                                                         0  0  0
##   programmers                                                     0  0  0
##   programs                                                        0  1  0
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        2  0  1
##   protected                                                       0  0  0
##   provided                                                        0  0  0
##   qualified                                                       0  1  0
##   queuing                                                         0  0  0
##   race                                                            0  0  0
##   rawinterim                                                      0  0  0
##   realize                                                         1  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  0  0
##   referenced                                                      0  0  0
##   regard                                                          0  0  0
##   release                                                         0  0  0
##   relevant                                                        0  0  0
##   religion                                                        0  0  0
##   reported                                                        0  0  0
##   represent                                                       0  1  0
##   requests                                                        0  0  0
##   require                                                         0  0  0
##   required                                                        0  0  0
##   requirement                                                     0  0  0
##   responsibilities                                                0  1  1
##   responsible                                                     0  1  0
##   results                                                         0  0  0
##   revenues                                                        0  0  0
##   review                                                          0  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            0  1  1
##   rshiny                                                          0  0  0
##   scala                                                           0  0  0
##   sensory                                                         0  0  0
##   services                                                        1  0  0
##   sets                                                            0  2  0
##   sexual                                                          0  0  0
##   shiny                                                           0  0  0
##   skills                                                          1  1  1
##   software                                                        0  1  0
##   solution                                                        1  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  0  0
##   strategy                                                        0  1  0
##   strong                                                          2  0  2
##   supervise                                                       0  0  0
##   technical                                                       0  0  0
##   techniques                                                      1  2  0
##   testing                                                         0  0  0
##   tools                                                           1  1  2
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  0
##   valid                                                           0  0  0
##   various                                                         0  0  0
##   varying                                                         0  0  0
##   veteran                                                         0  0  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  0  0
##   written                                                         0  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         1  0  1
##   advertising                                                     0  3  2
##   always                                                          0  0  1
##   analyst                                                         0  0  1
##   analytical                                                      0  1  1
##   analyze                                                         0  0  2
##   arise                                                           0  0  1
##   attention                                                       0  0  1
##   attribution                                                     2  0  1
##   best                                                            2  0  1
##   better                                                          0  0  1
##   blended                                                         0  0  1
##   campaigns                                                       0  0  1
##   client                                                          2  3  1
##   combined                                                        0  0  1
##   creative                                                        0  2  1
##   crossfunctional                                                 0  0  1
##   cuttingedge                                                     0  0  1
##   dataminer                                                       0  0  1
##   dedication                                                      0  0  1
##   desire                                                          0  0  1
##   detail                                                          0  0  1
##   developers                                                      0  0  1
##   direct                                                          0  0  3
##   efficiency                                                      0  0  2
##   excel                                                           0  0  1
##   exceptional                                                     0  1  1
##   execution                                                       0  0  1
##   external                                                        0  1  1
##   findings                                                        0  4  1
##   gurudata                                                        0  0  1
##   healthy                                                         0  0  1
##   hoc                                                             0  0  1
##   important                                                       0  1  1
##   improve                                                         0  1  1
##   innovator                                                       0  0  1
##   integral                                                        0  0  1
##   intelligence                                                    0  0  2
##   intermedia                                                      0  0  3
##   internal                                                        1  1  1
##   investments                                                     0  0  1
##   manager                                                         0  0  1
##   market                                                          1  1  1
##   marketing                                                       2  3  3
##   master                                                          0  0  1
##   media                                                           1  2  2
##   microsoft                                                       0  0  2
##   multitask                                                       0  0  1
##   operational                                                     0  0  1
##   order                                                           0  0  1
##   part                                                            0  1  1
##   past                                                            0  0  1
##   patterns                                                        0  0  1
##   practices                                                       2  0  1
##   previous                                                        0  0  1
##   prime                                                           0  0  1
##   prioritize                                                      0  0  1
##   problem                                                         0  1  1
##   procedures                                                      0  0  1
##   produce                                                         0  0  1
##   professionally                                                  0  0  1
##   promote                                                         0  0  1
##   proprietary                                                     0  0  1
##   provides                                                        0  0  1
##   qlikview                                                        0  0  1
##   queries                                                         0  0  1
##   reliably                                                        0  0  1
##   reports                                                         0  1  1
##   research                                                        1  3  2
##   resources                                                       0  0  1
##   resultsoriented                                                 0  0  1
##   return                                                          0  0  1
##   revenue                                                         0  0  1
##   scientistvisualization                                          0  0  1
##   seeking                                                         0  1  1
##   service                                                         0  0  1
##   solving                                                         0  1  1
##   special                                                         0  0  1
##   standard                                                        0  0  1
##   stored                                                          0  0  1
##   tableau                                                         0  1  1
##   technologies                                                    0  1  1
##   thinking                                                        0  0  1
##   thorough                                                        0  0  1
##   top                                                             0  0  1
##   traditional                                                     0  0  2
##   trends                                                          0  0  2
##   understand                                                      1  0  2
##   vital                                                           0  0  1
##   writing                                                         0  0  1
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  0  0
##   electrical                                                      0  0  0
##   fields                                                          0  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  1  0
##   insight                                                         0  0  0
##   problems                                                        1  1  0
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  0  0
##   undergraduate                                                   0  1  0
##   1960                                                            0  0  0
##   access                                                          0  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       1  0  0
##   among                                                           0  0  0
##   angeles                                                         0  1  0
##   anomalies                                                       0  0  0
##   apply                                                           0  0  0
##   architectures                                                   0  0  0
##   areas                                                           0  1  0
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      0  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  0  0
##   clandestine                                                     0  0  0
##   classification                                                  0  0  0
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  1  0
##   color                                                           0  0  0
##   comfort                                                         0  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  0  0
##   communication                                                   1  0  0
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         0  0  0
##   eager                                                           0  0  0
##   economic                                                        0  0  0
##   effective                                                       0  0  0
##   efforts                                                         0  0  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  0
##   engineers                                                       0  0  0
##   every                                                           0  0  0
##   everyone                                                        0  0  0
##   excited                                                         0  1  0
##   existence                                                       0  0  0
##   expect                                                          0  1  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     0  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         2  0  0
##   hardware                                                        0  0  0
##   highly                                                          0  0  0
##   ideas                                                           0  0  0
##   identity                                                        0  0  0
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  0  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  0  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           0  0  0
##   key                                                             0  0  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  0
##   lead                                                            0  0  0
##   leaders                                                         0  0  0
##   let                                                             0  0  0
##   libraries                                                       0  0  0
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  1  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  0
##   minimum                                                         0  0  0
##   modern                                                          0  0  0
##   much                                                            0  0  0
##   multiple                                                        0  0  0
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         0  0  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  0  0
##   operate                                                         1  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         1  0  0
##   passionate                                                      0  0  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  0  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       0  2  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  0
##   realworld                                                       0  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      0  0  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        0  0  0
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  0  0
##   scientists                                                      1  0  0
##   scikitlearn                                                     0  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  1  0
##   share                                                           0  0  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         0  0  0
##   small                                                           0  0  0
##   solid                                                           1  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     0  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   0  0  0
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      0  0  0
##   supplement                                                      0  0  0
##   system                                                          0  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      0  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         1  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  0  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  0  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            0  0  0
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         1  3  0
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         0  0  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        0  0  0
##   hands                                                           0  0  0
##   hire                                                            0  0  0
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        2  2  0
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         1  0  0
##   rely                                                            0  0  0
##   scalable                                                        0  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      2  1  0
##   structured                                                      0  0  0
##   text                                                            0  0  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    0  0  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      1  1  0
##   actions                                                         0  0  0
##   addition                                                        0  1  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  0  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         0  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  1  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         1  0  0
##   heuristics                                                      0  0  0
##   high                                                            0  1  0
##   identifybuild                                                   0  0  0
##   impact                                                          1  0  0
##   improving                                                       0  1  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  2  0
##   managers                                                        0  0  0
##   material                                                        0  0  0
##   mathematics                                                     1  0  0
##   mining                                                          1  0  0
##   modeling                                                        2  3  0
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  0  0
##   perform                                                         0  0  0
##   physics                                                         1  1  0
##   please                                                          0  0  0
##   practiced                                                       0  0  0
##   present                                                         0  1  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  0
##   sas                                                             0  1  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  1  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  0  0
##   told                                                            0  0  0
##   translating                                                     1  0  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  0  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         1  0  0
##   concise                                                         0  1  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  0  0
##   datadriven                                                      0  0  0
##   decision                                                        0  0  0
##   department                                                      0  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  0
##   excellent                                                       1  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  0
##   focus                                                           0  0  0
##   fulfill                                                         0  0  0
##   goals                                                           0  0  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  0  0  0
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  0  0
##   manipulating                                                    0  1  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  0
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  1  0
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  0  0
##   tasks                                                           0  1  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  0  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  1  0
##   bayesian                                                        0  0  0
##   boosting                                                        0  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  0  0
##   complete                                                        0  0  0
##   consumer                                                        0  1  0
##   copper                                                          0  0  0
##   customers                                                       1  0  0
##   demand                                                          0  0  0
##   demographic                                                     0  1  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  0  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      1  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     1  0  0
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  0
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  0  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          1  0  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  0  0
##   machines                                                        0  0  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  0  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  1  0
##   protection                                                      0  0  0
##   providing                                                       0  0  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  0  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  0
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         0  1  0
##   southern                                                        0  0  0
##   specific                                                        0  1  0
##   ssms                                                            0  0  0
##   structures                                                      0  0  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  1  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         0  1  0
##   vector                                                          0  0  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  1  0
##   catered                                                         0  0  0
##   clear                                                           1  1  0
##   clustering                                                      0  0  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       1  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  1  0
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  0  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            1  0  0
##   fsa                                                             0  0  0
##   get                                                             0  0  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         0  0  0
##   nlp                                                             0  0  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  0  0
##   phd                                                             0  0  0
##   points                                                          0  0  0
##   proven                                                          0  2  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  0  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  0
##   take                                                            0  1  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  0  0
##   visualization                                                   1  2  0
##   youll                                                           0  0  0
##   2011                                                            0  0  0
##   achieve                                                         0  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  1  0
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  0  0
##   computational                                                   0  0  0
##   computing                                                       0  0  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  0  0
##   establishing                                                    0  0  0
##   estimate                                                        0  0  0
##   excellence                                                      1  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            1  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  0  0
##   millions                                                        0  0  0
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  0  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  0  0
##   roi                                                             0  0  0
##   said                                                            0  1  0
##   selection                                                       0  0  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         0  0  0
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  1  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  0  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  0  0
##   final                                                           0  1  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        0  0  0
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      0  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  0  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  1  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  0  0
##   approaches                                                      0  0  0
##   arrangement                                                     0  0  0
##   aspects                                                         0  1  0
##   assistance                                                      0  0  0
##   automated                                                       0  0  0
##   aws                                                             0  0  0
##   careers                                                         0  0  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  0  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  0  0
##   disease                                                         0  0  0
##   driving                                                         0  0  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  0
##   exhaustive                                                      0  0  0
##   extend                                                          1  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  0  0
##   fully                                                           0  1  0
##   gain                                                            0  0  0
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  0  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            0  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  1  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  1  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  0
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           2  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            0  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  0
##   raw                                                             0  0  0
##   record                                                          0  0  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  0  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       1  0  0
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  0  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  0  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  0  0
##   track                                                           0  0  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            0  0  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  0
##   based                                                           0  2  0
##   bestinclass                                                     0  0  0
##   bias                                                            0  1  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   0  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  1  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  0  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  0
##   genetic                                                         0  0  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  0  0
##   likeminded                                                      0  0  0
##   local                                                           0  0  0
##   lot                                                             0  0  0
##   means                                                           0  0  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  1  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          0  0  0
##   state                                                           0  0  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  0  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  0  0
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  1  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  1  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  1  0
##   impacting                                                       0  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  1  0
##   investors                                                       0  0  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            1  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  1  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  0  0
##   privilege                                                       0  0  0
##   proactively                                                     0  1  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  1  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  1  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  0
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  0  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  1  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  1  0
##   athena                                                          0  0  0
##   author                                                          0  1  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  0
##   delivered                                                       0  0  0
##   establish                                                       1  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  0  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       2  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  1  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       1  0  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       1  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  2  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           0  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  0
##   experiments                                                     0  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  0
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  0  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  0
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  0
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  0  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      0  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  0  0
##   framework                                                       0  0  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  0  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  0  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  2  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    1  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  1  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  1  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       0  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         1  0  0
##   effort                                                          0  1  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  0
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  0  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  0  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    2  1  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       0  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        1  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           0  1  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  0  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  0  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           1  0  0
##   analytic                                                        0  0  0
##   ancestry                                                        0  0  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  0  0
##   collecting                                                      0  0  0
##   condition                                                       0  0  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  1  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  0
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  0  0
##   presentation                                                    0  2  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       1  0  0
##   technically                                                     0  1  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  0  0
##   edge                                                            0  0  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           1  0  0
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  0  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  1  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           2  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  0  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  1  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  1  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            36 37 38
##   125m                                                            0  0  0
##   401k                                                            0  0  0
##   900b                                                            0  0  0
##   able                                                            0  1  0
##   activities                                                      0  1  0
##   alerts                                                          0  0  0
##   allow                                                           0  0  0
##   also                                                            0  0  0
##   analysis                                                        1  1  6
##   anova                                                           0  0  0
##   app                                                             0  0  0
##   apple                                                           0  0  0
##   applying                                                        0  1  1
##   area                                                            0  0  0
##   ask                                                             0  0  0
##   assembled                                                       0  0  0
##   auc                                                             0  0  0
##   automate                                                        0  0  0
##   automation                                                      0  0  0
##   background                                                      0  1  0
##   base                                                            0  0  0
##   become                                                          0  0  0
##   benefits                                                        0  1  0
##   boldly                                                          0  0  0
##   brookfield                                                      0  0  0
##   building                                                        1  0  0
##   business                                                        0  8  2
##   calculate                                                       0  0  0
##   can                                                             0  0  0
##   candidate                                                       0  0  0
##   canonical                                                       0  0  0
##   capacity                                                        0  0  0
##   capital                                                         0  3  0
##   challenge                                                       0  0  0
##   changes                                                         0  0  0
##   chung                                                           0  0  0
##   cleaning                                                        0  0  0
##   code                                                            0  1  0
##   coding                                                          0  0  1
##   commands                                                        0  0  0
##   communicate                                                     0  2  0
##   communicator                                                    0  0  0
##   companies                                                       0  1  0
##   company                                                         0  1  1
##   compelling                                                      0  0  0
##   competitive                                                     0  0  0
##   completing                                                      0  0  0
##   concepts                                                        0  0  0
##   connect                                                         0  0  0
##   contribute                                                      0  0  0
##   country                                                         0  0  0
##   create                                                          0  1  0
##   creating                                                        0  0  0
##   criteria                                                        0  0  0
##   curiosity                                                       0  0  0
##   data                                                            0 12 11
##   dataset                                                         0  0  0
##   deep                                                            3  3  0
##   delivering                                                      0  1  0
##   dental                                                          0  0  0
##   designed                                                        0  0  0
##   differences                                                     0  0  0
##   digitizing                                                      0  0  0
##   doesnt                                                          0  0  0
##   domain                                                          0  0  0
##   done                                                            0  1  0
##   drayage                                                         0  0  0
##   drive                                                           2  2  0
##   driven                                                          0  1  0
##   drivers                                                         0  0  0
##   dynamics                                                        0  0  0
##   easy                                                            0  0  0
##   efficiencies                                                    0  0  0
##   elton                                                           0  0  0
##   end                                                             0  0  0
##   engage                                                          0  0  0
##   entire                                                          0  0  0
##   equity                                                          0  0  0
##   evidence                                                        0  0  0
##   exact                                                           0  0  0
##   examples                                                        0  0  0
##   execute                                                         0  0  0
##   experience                                                      6  4  6
##   explain                                                         0  0  0
##   feature                                                         0  0  0
##   find                                                            0  0  0
##   finding                                                         0  0  0
##   first                                                           0  1  0
##   fleet                                                           0  0  0
##   follow                                                          0  0  0
##   founded                                                         0  1  0
##   freight                                                         0  0  0
##   full                                                            0  0  0
##   functions                                                       0  1  0
##   general                                                         0  1  0
##   generalize                                                      0  0  0
##   gofundme                                                        0  0  0
##   google                                                          0  0  0
##   great                                                           0  0  0
##   guidelines                                                      0  0  0
##   happiest                                                        0  0  0
##   harness                                                         0  0  0
##   haves                                                           0  0  0
##   higher                                                          0  1  0
##   holidays                                                        0  0  0
##   hope                                                            0  0  0
##   hygiene                                                         0  0  0
##   idealab                                                         0  0  0
##   identify                                                        0  2  2
##   identifying                                                     0  1  0
##   includes                                                        0  0  0
##   including                                                       0  1  2
##   increased                                                       0  0  0
##   industry                                                        0  0  0
##   initial                                                         0  0  0
##   instantly                                                       0  0  0
##   interpretable                                                   0  0  0
##   intuitive                                                       0  0  0
##   issues                                                          0  0  0
##   kareo                                                           0  0  0
##   knowledgeable                                                   0  0  0
##   kpis                                                            0  0  0
##   language                                                        0  4  0
##   largest                                                         0  1  0
##   learn                                                           0  0  0
##   learning                                                        4  6  5
##   led                                                             0  0  0
##   level                                                           0  0  0
##   leverage                                                        0  1  0
##   lidia                                                           0  0  0
##   like                                                            1  1  0
##   load                                                            0  0  0
##   loads                                                           0  0  0
##   logistics                                                       0  0  0
##   looking                                                         0  0  0
##   machine                                                         1  2  5
##   maintainable                                                    0  0  0
##   make                                                            0  1  2
##   marketplace                                                     0  0  0
##   match                                                           0  0  0
##   matching                                                        0  0  0
##   meaningful                                                      0  0  0
##   measured                                                        0  0  0
##   medical                                                         0  2  0
##   metrics                                                         0  0  0
##   mission                                                         0  0  0
##   mobile                                                          0  0  0
##   model                                                           0  1  0
##   models                                                          2  1  2
##   movement                                                        0  0  0
##   need                                                            0  0  0
##   next                                                            0  0  0
##   nice                                                            0  0  0
##   ondemand                                                        0  0  0
##   one                                                             1  4  1
##   opportunities                                                   0  0  1
##   optimization                                                    0  1  1
##   otherwise                                                       0  0  0
##   outcomes                                                        0  1  0
##   overall                                                         0  0  0
##   packages                                                        0  0  0
##   people                                                          3  1  2
##   person                                                          0  0  0
##   pipelineperform                                                 0  0  0
##   pipelines                                                       0  0  1
##   platform                                                        0  1  2
##   point                                                           0  0  0
##   potential                                                       0  0  0
##   power                                                           0  0  0
##   powers                                                          0  0  0
##   precisionrecall                                                 0  0  0
##   previously                                                      0  0  0
##   process                                                         0  0  0
##   processing                                                      0  3  1
##   product                                                         0  0  1
##   prototype                                                       1  0  1
##   provide                                                         0  0  1
##   python                                                          1  3  1
##   pythonr                                                         0  0  0
##   raised                                                          0  0  0
##   rate                                                            0  0  0
##   real                                                            0  0  0
##   relationships                                                   0  0  0
##   reporting                                                       0  0  0
##   reproducible                                                    0  0  0
##   resolve                                                         0  0  0
##   rigorous                                                        0  0  2
##   robinson                                                        0  0  0
##   salary                                                          0  0  0
##   sales                                                           0  2  0
##   sample                                                          0  0  0
##   science                                                         0  4  0
##   sequoia                                                         0  0  0
##   setting                                                         0  0  0
##   shippers                                                        0  0  0
##   shipping                                                        0  0  0
##   shows                                                           0  0  0
##   simple                                                          0  0  0
##   size                                                            0  0  0
##   someone                                                         0  0  0
##   specifically                                                    0  0  0
##   splits                                                          0  0  0
##   sql                                                             1  1  0
##   startup                                                         0  0  0
##   statistical                                                     0  1  4
##   strategies                                                      1  0  0
##   success                                                         0  0  0
##   systems                                                         2  2  0
##   tables                                                          0  0  0
##   taking                                                          0  0  0
##   taught                                                          0  0  0
##   team                                                            3  1  1
##   teams                                                           0  1  1
##   tech                                                            0  0  0
##   technology                                                      3  0  0
##   tests                                                           0  0  0
##   throughout                                                      0  0  0
##   time                                                            0  0  0
##   tooling                                                         0  0  0
##   toolsets                                                        0  0  0
##   tracking                                                        0  0  0
##   training                                                        0  0  0
##   traintest                                                       0  0  0
##   transformations                                                 0  0  0
##   transforming                                                    0  0  0
##   transparency                                                    0  0  0
##   truckercentric                                                  0  0  0
##   truckers                                                        0  0  0
##   trucking                                                        0  0  0
##   trusting                                                        0  0  0
##   ttest                                                           0  0  0
##   understanding                                                   0  0  0
##   unix                                                            0  0  0
##   updates                                                         0  0  0
##   use                                                             0  2  0
##   utility                                                         0  0  0
##   vacation                                                        0  0  0
##   venture                                                         0  0  0
##   venturebacked                                                   0  0  0
##   virtual                                                         0  0  0
##   vision                                                          0  1  0
##   visualizations                                                  0  0  0
##   way                                                             0  0  0
##   web                                                             0  0  0
##   whatever                                                        0  0  0
##   within                                                          1  1  0
##   words                                                           0  0  0
##   work                                                            2  2  4
##   worked                                                          0  0  0
##   works                                                           0  0  1
##   yan                                                             0  0  0
##   years                                                           0  1  2
##   360b                                                            0  0  0
##   algorithms                                                      0  4  0
##   analytics                                                       0  6  0
##   andor                                                           1  1  0
##   bachelor                                                        0  0  0
##   basis                                                           0  1  0
##   behavior                                                        0  0  0
##   believe                                                         0  0  1
##   big                                                             0  0  0
##   builds                                                          0  0  0
##   chance                                                          0  0  0
##   channel                                                         0  0  0
##   cloud                                                           0  2  0
##   committed                                                       0  0  1
##   comparable                                                      0  0  0
##   complex                                                         0  3  1
##   computation                                                     0  0  0
##   content                                                         0  0  0
##   conversion                                                      0  0  0
##   critical                                                        0  0  0
##   customer                                                        0  0  1
##   database                                                        0  0  1
##   decided                                                         0  0  0
##   decisions                                                       0  1  0
##   degree                                                          0  4  0
##   deliver                                                         0  0  0
##   design                                                          0  0  0
##   discovery                                                       0  0  0
##   distributed                                                     0  1  0
##   diversity                                                       0  0  0
##   downtown                                                        0  0  0
##   editorial                                                       0  0  0
##   editors                                                         0  0  0
##   employees                                                       0  0  0
##   employer                                                        0  1  0
##   employment                                                      0  1  0
##   engine                                                          0  0  0
##   environment                                                     1  0  0
##   equal                                                           0  2  0
##   field                                                           0  1  2
##   forms                                                           0  0  0
##   fox                                                             0  0  0
##   good                                                            0  0  0
##   hadoop                                                          1  0  0
##   hbase                                                           0  0  0
##   hdfs                                                            0  0  0
##   helps                                                           1  0  0
##   hiring                                                          0  0  0
##   hive                                                            0  0  0
##   hyperintelligent                                                0  0  0
##   implement                                                       0  0  1
##   inclusive                                                       0  0  0
##   increase                                                        0  0  0
##   informed                                                        0  0  0
##   initiatives                                                     0  0  0
##   innovating                                                      0  1  0
##   innovative                                                      0  0  0
##   interesting                                                     0  0  0
##   internet                                                        0  0  0
##   javascala                                                       0  0  0
##   job                                                             1  1  2
##   join                                                            1  0  0
##   kafka                                                           0  0  0
##   largescale                                                      1  0  1
##   leading                                                         0  0  0
##   loaded                                                          0  0  0
##   log                                                             0  0  0
##   maintain                                                        0  0  0
##   mapreduce                                                       0  0  0
##   massive                                                         0  0  0
##   merit                                                           0  0  0
##   month                                                           0  0  0
##   nbc                                                             0  0  0
##   newsroom                                                        0  0  0
##   nosql                                                           1  0  0
##   online                                                          0  0  0
##   opportunity                                                     2  3  0
##   personalization                                                 0  0  0
##   petabyte                                                        0  0  0
##   pig                                                             0  0  0
##   plus                                                            0  2  0
##   populate                                                        0  0  0
##   powered                                                         0  0  0
##   prediction                                                      0  0  0
##   predictive                                                      0  1  0
##   preferably                                                      0  1  0
##   production                                                      1  0  0
##   products                                                        1  0  1
##   programming                                                     0  1  1
##   publisher                                                       0  0  0
##   qualifications                                                  0  1  0
##   quantitative                                                    0  0  0
##   query                                                           0  1  1
##   reached                                                         0  0  0
##   read                                                            0  0  0
##   readership                                                      0  0  0
##   recommendation                                                  0  0  1
##   recommendations                                                 0  1  1
##   related                                                         1  2  2
##   requirements                                                    0  0  2
##   robust                                                          0  0  0
##   scaling                                                         0  0  0
##   scientist                                                       0  0  3
##   senior                                                          0  1  0
##   serving                                                         0  0  0
##   set                                                             0  1  1
##   sites                                                           0  0  0
##   solutions                                                       0  2  1
##   something                                                       0  0  0
##   spark                                                           1  0  0
##   specialinterest                                                 0  0  0
##   sports                                                          0  0  0
##   stack                                                           0  0  0
##   statisticsbased                                                 0  0  0
##   storage                                                         0  0  0
##   streaming                                                       0  0  0
##   support                                                         0  2  0
##   taboola                                                         0  0  0
##   targeting                                                       0  0  0
##   theres                                                          0  0  0
##   today                                                           0  0  0
##   tool                                                            0  0  0
##   transformation                                                  0  0  0
##   tribune                                                         0  0  0
##   unique                                                          0  1  0
##   usa                                                             0  0  0
##   users                                                           0  0  1
##   value                                                           0  1  0
##   visitors                                                        0  0  0
##   weather                                                         0  0  0
##   webs                                                            0  0  0
##   world                                                           0  2  0
##   worlds                                                          0  0  0
##   writers                                                         0  0  0
##   128                                                             0  0  0
##   144                                                             0  0  0
##   200000                                                          0  0  0
##   2017                                                            0  0  0
##   50year                                                          0  0  0
##   accommodations                                                  0  0  0
##   acquire                                                         0  0  0
##   across                                                          1  1  1
##   address                                                         0  0  0
##   adherence                                                       0  0  0
##   advanced                                                        0  1  1
##   age                                                             0  1  0
##   agile                                                           0  0  0
##   ambitions                                                       0  0  0
##   analysts                                                        0  0  0
##   analyticscientific                                              0  0  0
##   applicant                                                       0  0  0
##   applicants                                                      0  0  0
##   application                                                     0  0  0
##   applications                                                    0  1  1
##   apps                                                            0  0  0
##   architects                                                      0  0  0
##   architecture                                                    0  0  0
##   array                                                           0  0  0
##   assign                                                          0  0  0
##   attempt                                                         0  0  0
##   authorization                                                   0  0  0
##   available                                                       0  0  0
##   average                                                         0  0  0
##   billion                                                         0  0  0
##   breadth                                                         0  0  0
##   bug                                                             0  0  0
##   candidates                                                      0  0  0
##   capabilities                                                    0  0  0
##   capgemini                                                       0  0  0
##   changing                                                        0  0  0
##   characteristic                                                  0  1  0
##   click                                                           0  0  0
##   clients                                                         0  1  0
##   collaborate                                                     1  0  0
##   comes                                                           0  0  0
##   computer                                                        0  3  0
##   consider                                                        0  0  0
##   consideration                                                   0  0  0
##   consulting                                                      0  0  0
##   contemporary                                                    0  0  0
##   conviction                                                      0  0  0
##   coordinate                                                      0  0  0
##   count                                                           0  0  0
##   countries                                                       0  0  0
##   curation                                                        0  0  0
##   customize                                                       0  0  0
##   datasets                                                        3  0  0
##   delivery                                                        0  0  0
##   demands                                                         0  0  0
##   deploy                                                          1  0  0
##   deployment                                                      0  0  0
##   description                                                     0  0  0
##   designing                                                       0  0  0
##   develop                                                         1  2  0
##   developer                                                       0  0  0
##   developing                                                      0  0  1
##   development                                                     1  0  0
##   digital                                                         0  0  0
##   disabilities                                                    0  0  0
##   disability                                                      0  1  0
##   disseminate                                                     0  0  0
##   documentation                                                   0  0  0
##   documenting                                                     0  0  0
##   duties                                                          0  0  0
##   enable                                                          0  0  0
##   enables                                                         0  0  0
##   encouraging                                                     0  0  0
##   engineering                                                     0  0  0
##   enhance                                                         0  0  0
##   ensuring                                                        0  0  0
##   environmental                                                   0  0  0
##   eur                                                             0  0  0
##   evolving                                                        0  0  0
##   experienced                                                     2  1  0
##   expert                                                          2  0  0
##   expertise                                                       1  1  0
##   feedback                                                        0  0  0
##   fixing                                                          0  0  0
##   flexible                                                        0  0  0
##   following                                                       0  1  0
##   forefront                                                       0  0  0
##   frameworks                                                      1  1  0
##   function                                                        0  1  0
##   functional                                                      0  0  0
##   future                                                          0  0  0
##   gathering                                                       0  0  1
##   gender                                                          0  2  0
##   genetics                                                        0  0  0
##   global                                                          0  0  0
##   group                                                           0  5  0
##   guiding                                                         0  0  0
##   hardship                                                        0  0  0
##   help                                                            0  0  0
##   heritage                                                        0  0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0  0
##   identityexpression                                              0  0  0
##   implementing                                                    0  0  0
##   include                                                         0  1  1
##   individuals                                                     0  0  0
##   industryspecific                                                0  0  0
##   inform                                                          0  0  0
##   information                                                     1  2  0
##   innovation                                                      0  0  0
##   intended                                                        0  0  0
##   interpreting                                                    0  0  0
##   involve                                                         0  0  0
##   java                                                            0  1  1
##   junior                                                          0  0  0
##   knowledge                                                       1  1  2
##   landscape                                                       0  0  0
##   languages                                                       0  1  0
##   large                                                           1  2  1
##   law                                                             0  1  0
##   leader                                                          1  0  0
##   leadership                                                      0  0  0
##   lifecycle                                                       0  0  0
##   limited                                                         0  0  0
##   link                                                            0  0  0
##   manage                                                          0  1  0
##   management                                                      0  1  0
##   manipulation                                                    0  1  0
##   manner                                                          0  0  0
##   manufacturers                                                   0  0  0
##   marital                                                         0  1  0
##   matter                                                          0  0  0
##   may                                                             0  0  0
##   meetings                                                        0  0  0
##   members                                                         0  0  0
##   mental                                                          0  1  0
##   mentor                                                          0  0  0
##   mentoring                                                       0  0  0
##   methods                                                         0  4  2
##   might                                                           0  0  0
##   min                                                             0  0  0
##   monitoring                                                      0  0  0
##   multicultural                                                   0  0  0
##   must                                                            0  1  0
##   national                                                        0  1  0
##   necessary                                                       0  0  0
##   new                                                             2  3  1
##   now                                                             0  0  0
##   operations                                                      0  1  0
##   organizations                                                   0  0  0
##   orientation                                                     0  1  0
##   origin                                                          0  1  0
##   performed                                                       0  0  0
##   personnel                                                       0  0  0
##   physical                                                        0  1  0
##   platforms                                                       0  1  0
##   policies                                                        0  1  0
##   pose                                                            0  0  0
##   position                                                        1  0  0
##   prioritizing                                                    0  0  0
##   processes                                                       0  0  0
##   proficiency                                                     0  2  0
##   proficient                                                      0  0  0
##   program                                                         0  1  0
##   programmers                                                     0  0  0
##   programs                                                        0  0  0
##   project                                                         0  0  0
##   projectprogram                                                  0  0  0
##   projects                                                        1  0  0
##   protected                                                       0  1  0
##   provided                                                        0  0  0
##   qualified                                                       0  0  0
##   queuing                                                         0  0  0
##   race                                                            0  1  0
##   rawinterim                                                      0  0  0
##   realize                                                         0  0  0
##   reasonable                                                      0  0  0
##   receive                                                         0  1  0
##   referenced                                                      0  0  0
##   regard                                                          0  0  0
##   release                                                         0  0  0
##   relevant                                                        1  1  2
##   religion                                                        0  1  0
##   reported                                                        0  0  0
##   represent                                                       0  0  0
##   requests                                                        0  0  0
##   require                                                         0  0  0
##   required                                                        1  1  1
##   requirement                                                     0  0  0
##   responsibilities                                                0  1  0
##   responsible                                                     0  0  0
##   results                                                         0  2  0
##   revenues                                                        0  0  0
##   review                                                          0  0  0
##   reviewing                                                       0  0  0
##   reviews                                                         0  0  0
##   rights                                                          0  0  0
##   role                                                            0  0  0
##   rshiny                                                          0  0  0
##   scala                                                           1  1  1
##   sensory                                                         0  0  0
##   services                                                        0  0  0
##   sets                                                            0  2  1
##   sexual                                                          0  1  0
##   shiny                                                           0  0  0
##   skills                                                          2  1  2
##   software                                                        0  1  1
##   solution                                                        0  0  0
##   sponsor                                                         0  0  0
##   sponsorship                                                     0  0  0
##   status                                                          0  5  0
##   strategy                                                        0  1  0
##   strong                                                          2  2  0
##   supervise                                                       0  0  0
##   technical                                                       1  1  1
##   techniques                                                      1  1  0
##   testing                                                         0  0  1
##   tools                                                           0  1  0
##   traditionally                                                   0  0  0
##   train                                                           0  0  0
##   undue                                                           0  0  0
##   usd                                                             0  0  0
##   user                                                            0  0  2
##   valid                                                           0  0  0
##   various                                                         0  0  2
##   varying                                                         0  0  0
##   veteran                                                         0  1  0
##   visa                                                            0  0  0
##   visit                                                           0  0  0
##   visualize                                                       0  0  0
##   whenever                                                        0  0  0
##   willing                                                         0  0  0
##   without                                                         0  0  0
##   workplace                                                       0  1  0
##   written                                                         0  0  0
##   wwwcapgeminicom                                                 0  0  0
##   ability                                                         1  1  0
##   advertising                                                     0  0  0
##   always                                                          0  0  0
##   analyst                                                         0  0  0
##   analytical                                                      0  3  5
##   analyze                                                         0  1  1
##   arise                                                           0  0  0
##   attention                                                       0  0  0
##   attribution                                                     0  0  0
##   best                                                            0  0  0
##   better                                                          0  0  0
##   blended                                                         0  0  0
##   campaigns                                                       0  0  0
##   client                                                          0  0  0
##   combined                                                        0  0  0
##   creative                                                        0  0  0
##   crossfunctional                                                 0  0  0
##   cuttingedge                                                     0  0  0
##   dataminer                                                       0  0  0
##   dedication                                                      0  0  0
##   desire                                                          0  0  0
##   detail                                                          0  0  0
##   developers                                                      0  0  0
##   direct                                                          0  0  0
##   efficiency                                                      0  0  1
##   excel                                                           0  0  0
##   exceptional                                                     0  0  0
##   execution                                                       0  0  0
##   external                                                        0  2  0
##   findings                                                        0  1  0
##   gurudata                                                        0  0  0
##   healthy                                                         0  0  0
##   hoc                                                             0  0  0
##   important                                                       0  0  0
##   improve                                                         0  1  2
##   innovator                                                       0  0  0
##   integral                                                        0  0  0
##   intelligence                                                    3  0  0
##   intermedia                                                      0  0  0
##   internal                                                        0  2  0
##   investments                                                     0  0  0
##   manager                                                         0  0  0
##   market                                                          0  0  0
##   marketing                                                       0  2  0
##   master                                                          0  1  0
##   media                                                           0  0  0
##   microsoft                                                       0  1  0
##   multitask                                                       0  0  0
##   operational                                                     0  0  0
##   order                                                           0  0  0
##   part                                                            0  1  0
##   past                                                            0  0  0
##   patterns                                                        0  0  0
##   practices                                                       0  0  0
##   previous                                                        0  0  0
##   prime                                                           0  0  0
##   prioritize                                                      0  0  0
##   problem                                                         0  1  0
##   procedures                                                      0  0  0
##   produce                                                         0  0  0
##   professionally                                                  0  1  0
##   promote                                                         0  0  0
##   proprietary                                                     0  0  0
##   provides                                                        0  0  0
##   qlikview                                                        0  0  0
##   queries                                                         0  0  0
##   reliably                                                        0  0  0
##   reports                                                         0  1  0
##   research                                                        0  1  0
##   resources                                                       0  0  0
##   resultsoriented                                                 0  0  0
##   return                                                          0  1  0
##   revenue                                                         0  0  0
##   scientistvisualization                                          0  0  0
##   seeking                                                         2  0  0
##   service                                                         0  1  0
##   solving                                                         0  1  0
##   special                                                         0  0  0
##   standard                                                        0  0  0
##   stored                                                          0  0  0
##   tableau                                                         0  0  0
##   technologies                                                    1  0  0
##   thinking                                                        0  0  0
##   thorough                                                        0  0  0
##   top                                                             0  0  0
##   traditional                                                     0  0  0
##   trends                                                          0  1  1
##   understand                                                      0  0  0
##   vital                                                           0  0  0
##   writing                                                         0  0  0
##   applicable                                                      0  0  0
##   clearly                                                         0  0  0
##   defined                                                         0  1  0
##   electrical                                                      0  0  0
##   fields                                                          1  0  0
##   fluent                                                          0  0  0
##   graduate                                                        0  0  0
##   insight                                                         0  0  1
##   problems                                                        1  3  2
##   pulling                                                         0  0  0
##   scope                                                           0  0  0
##   solve                                                           0  1  1
##   undergraduate                                                   0  0  0
##   1960                                                            0  0  0
##   access                                                          0  0  0
##   accredited                                                      0  0  0
##   achievable                                                      0  0  0
##   action                                                          0  0  0
##   active                                                          0  0  0
##   actively                                                        0  0  0
##   additional                                                      0  0  0
##   adversarial                                                     0  0  0
##   advisory                                                        0  0  0
##   aerospace                                                       0  0  0
##   afraid                                                          0  0  0
##   air                                                             0  0  0
##   algorithm                                                       0  0  0
##   among                                                           0  1  0
##   angeles                                                         0  0  0
##   anomalies                                                       0  0  0
##   apply                                                           0  0  0
##   architectures                                                   0  0  0
##   areas                                                           1  1  1
##   aspiration                                                      0  0  0
##   asset                                                           0  0  0
##   attack                                                          0  0  0
##   attacks                                                         0  0  0
##   bachelors                                                       0  0  0
##   beyond                                                          0  0  0
##   bigger                                                          0  0  0
##   bus                                                             0  0  0
##   career                                                          0  0  0
##   center                                                          0  0  0
##   challenges                                                      0  0  0
##   chosen                                                          0  0  0
##   citizenship                                                     0  1  0
##   clandestine                                                     0  0  0
##   classification                                                  1  0  0
##   classifier                                                      0  0  0
##   clearance                                                       0  0  0
##   collection                                                      0  0  0
##   color                                                           0  1  0
##   comfort                                                         0  0  0
##   commercial                                                      0  0  0
##   commitment                                                      0  0  0
##   common                                                          0  4  0
##   communication                                                   0  0  0
##   communications                                                  0  0  0
##   compartmented                                                   0  0  0
##   competitions                                                    0  0  0
##   competitor                                                      0  0  0
##   conduct                                                         0  0  0
##   corporation                                                     0  0  0
##   creates                                                         0  0  0
##   curious                                                         0  0  0
##   current                                                         0  0  0
##   cyber                                                           0  0  0
##   datacentric                                                     0  0  0
##   datascience                                                     0  0  0
##   demonstrated                                                    0  0  0
##   described                                                       0  0  0
##   details                                                         0  0  0
##   detect                                                          0  0  0
##   developed                                                       0  0  0
##   differing                                                       0  0  0
##   discriminated                                                   0  0  0
##   diverse                                                         1  0  0
##   eager                                                           0  0  0
##   economic                                                        0  1  0
##   effective                                                       0  0  0
##   efforts                                                         0  1  0
##   else                                                            0  0  0
##   enforcement                                                     0  0  0
##   engineer                                                        0  0  1
##   engineers                                                       0  0  1
##   every                                                           0  1  0
##   everyone                                                        0  0  0
##   excited                                                         0  0  0
##   existence                                                       0  0  0
##   expect                                                          0  0  0
##   explore                                                         0  0  0
##   exploring                                                       0  0  0
##   expression                                                      0  0  0
##   extensive                                                       0  0  0
##   extremely                                                       0  0  0
##   facilities                                                      0  0  0
##   familiarity                                                     0  0  0
##   federally                                                       0  0  0
##   ffrdc                                                           0  0  0
##   filled                                                          0  0  0
##   focused                                                         0  0  0
##   force                                                           0  0  0
##   formulation                                                     0  0  0
##   funded                                                          0  0  0
##   gamechanging                                                    0  0  0
##   gnu                                                             0  0  0
##   government                                                      0  0  0
##   gpus                                                            0  0  0
##   greatest                                                        0  0  0
##   groups                                                          0  0  0
##   growing                                                         0  0  0
##   handson                                                         0  0  0
##   hardware                                                        0  0  0
##   highly                                                          0  1  0
##   ideas                                                           0  0  0
##   identity                                                        0  1  0
##   image                                                           0  0  0
##   impossible                                                      0  0  0
##   inception                                                       0  0  0
##   independent                                                     0  1  0
##   innovators                                                      0  0  0
##   instead                                                         0  0  0
##   intelligent                                                     0  1  0
##   interview                                                       0  0  0
##   issued                                                          0  0  0
##   kagglelike                                                      0  0  0
##   keras                                                           1  0  0
##   key                                                             0  0  0
##   laboratory                                                      0  0  0
##   latest                                                          0  0  0
##   launch                                                          0  0  0
##   lead                                                            0  0  0
##   leaders                                                         0  0  0
##   let                                                             0  0  0
##   libraries                                                       0  0  1
##   limits                                                          0  0  0
##   literally                                                       0  0  0
##   los                                                             0  0  0
##   main                                                            0  0  0
##   major                                                           0  0  0
##   meet                                                            0  0  0
##   member                                                          0  0  0
##   membrtch                                                        0  0  0
##   methodology                                                     0  0  0
##   minds                                                           0  0  0
##   minimum                                                         0  0  0
##   modern                                                          0  0  0
##   much                                                            0  0  0
##   multiple                                                        0  1  0
##   nations                                                         0  0  0
##   nature                                                          0  0  0
##   nearest                                                         0  0  0
##   network                                                         0  0  0
##   neural                                                          0  0  0
##   neurons                                                         0  0  0
##   none                                                            0  0  0
##   objective                                                       0  0  0
##   obtain                                                          0  0  0
##   obtaining                                                       0  0  0
##   office                                                          0  0  0
##   operate                                                         0  0  0
##   opportunityaffirmative                                          0  0  0
##   others                                                          0  0  0
##   partner                                                         0  0  0
##   pass                                                            0  0  0
##   passion                                                         0  1  1
##   passionate                                                      1  1  0
##   pay                                                             0  0  0
##   perspectives                                                    0  0  0
##   platypus                                                        0  0  0
##   policy                                                          0  0  0
##   polygraph                                                       0  0  0
##   possible                                                        0  0  0
##   poster                                                          0  0  0
##   potentially                                                     0  0  0
##   preferred                                                       0  2  0
##   pride                                                           0  0  0
##   problemsolving                                                  0  0  0
##   producing                                                       0  0  0
##   prototypes                                                      0  0  0
##   pushing                                                         0  0  0
##   pytorch                                                         0  0  0
##   radio                                                           0  0  0
##   radios                                                          0  0  0
##   rare                                                            0  0  0
##   readiness                                                       0  0  0
##   ready                                                           0  0  1
##   realworld                                                       0  0  0
##   reconnaissance                                                  0  0  0
##   regression                                                      0  1  0
##   regular                                                         0  0  0
##   reinforcement                                                   0  0  0
##   relocation                                                      0  0  0
##   requires                                                        0  0  2
##   requisition                                                     0  0  0
##   resource                                                        0  0  0
##   satellite                                                       0  0  0
##   schedule                                                        0  0  0
##   scientific                                                      0  0  0
##   scientists                                                      0  0  2
##   scikitlearn                                                     1  0  0
##   secret                                                          0  0  0
##   security                                                        0  0  0
##   segment                                                         0  0  0
##   sensitive                                                       0  0  0
##   serve                                                           0  1  0
##   share                                                           0  0  0
##   simulation                                                      0  0  0
##   simultaneously                                                  0  0  0
##   since                                                           0  0  0
##   skilled                                                         0  0  0
##   small                                                           0  0  0
##   solid                                                           0  0  0
##   space                                                           0  0  0
##   spacerelated                                                    0  0  0
##   spanning                                                        0  0  0
##   specialist                                                      0  0  0
##   specialized                                                     1  0  0
##   staff                                                           0  0  0
##   staffed                                                         0  0  0
##   statement                                                       0  0  0
##   stateoftheart                                                   1  0  0
##   states                                                          0  0  0
##   stf                                                             0  0  0
##   strength                                                        0  0  0
##   studies                                                         0  0  0
##   superior                                                        0  0  0
##   supervised                                                      0  0  0
##   supplement                                                      0  0  0
##   system                                                          1  0  0
##   takes                                                           0  0  0
##   technologically                                                 0  0  0
##   telecom                                                         0  0  0
##   telecommunication                                               0  0  0
##   telecommunications                                              0  0  0
##   tensorflow                                                      1  0  0
##   theano                                                          0  0  0
##   theoretical                                                     0  0  0
##   theoretically                                                   0  0  0
##   thought                                                         0  0  0
##   title                                                           0  0  0
##   transcript                                                      0  0  0
##   transcripts                                                     0  0  0
##   trusted                                                         0  1  0
##   tssci                                                           0  0  0
##   type                                                            0  0  0
##   unconventional                                                  0  0  0
##   united                                                          0  1  0
##   university                                                      0  0  0
##   unsupervised                                                    0  0  0
##   valued                                                          0  0  0
##   veles                                                           0  0  0
##   verbal                                                          0  0  0
##   well                                                            0  0  0
##   whose                                                           0  0  0
##   workforce                                                       0  0  0
##   working                                                         2  1  1
##   yes                                                             0  0  0
##   zone                                                            0  0  0
##   acumen                                                          0  0  0
##   agent                                                           0  0  0
##   agree                                                           0  0  0
##   amongst                                                         0  0  0
##   ample                                                           0  0  0
##   capable                                                         0  0  0
##   composed                                                        0  0  0
##   contacted                                                       0  0  0
##   enjoy                                                           0  0  0
##   essential                                                       0  0  0
##   experts                                                         0  0  0
##   extract                                                         0  0  0
##   facebook                                                        0  0  0
##   fulltime                                                        1  0  0
##   hands                                                           0  0  1
##   hire                                                            0  0  1
##   inc                                                             0  0  0
##   indeed                                                          0  0  0
##   insights                                                        0  2  1
##   mind                                                            0  0  0
##   motivated                                                       0  0  0
##   numpy                                                           0  0  0
##   pandas                                                          0  0  0
##   papers                                                          0  0  0
##   phone                                                           0  0  0
##   productize                                                      0  0  0
##   quickly                                                         0  0  0
##   rely                                                            0  0  0
##   scalable                                                        1  0  0
##   sciencerelated                                                  0  0  0
##   sparkscalajava                                                  0  0  0
##   statistics                                                      0  1  0
##   structured                                                      1  1  0
##   text                                                            0  0  0
##   theory                                                          0  0  0
##   together                                                        0  0  0
##   uber                                                            0  0  0
##   unstructured                                                    1  1  0
##   valuable                                                        0  0  0
##   via                                                             0  0  0
##   worldclass                                                      0  0  0
##   year                                                            0  0  0
##   accelerate                                                      0  0  0
##   actionable                                                      0  0  0
##   actions                                                         0  0  0
##   addition                                                        0  0  0
##   adequately                                                      0  0  0
##   agency                                                          0  0  0
##   assist                                                          0  0  0
##   benefit                                                         0  0  0
##   cgi                                                             0  0  0
##   change                                                          0  0  0
##   collectively                                                    0  0  0
##   college                                                         0  0  0
##   come                                                            0  1  0
##   continues                                                       0  0  0
##   culture                                                         0  0  0
##   dashboards                                                      0  0  0
##   datahadoopnosql                                                 0  0  0
##   desired                                                         1  0  0
##   discover                                                        0  0  0
##   discovering                                                     0  0  0
##   doctorate                                                       0  0  0
##   eco                                                             0  0  0
##   engineeringscience                                              0  0  0
##   exciting                                                        0  0  0
##   exploration                                                     0  0  0
##   extraordinary                                                   0  0  0
##   firms                                                           0  0  0
##   fouryear                                                        0  0  0
##   graduation                                                      0  0  0
##   helping                                                         0  1  0
##   heuristics                                                      0  0  0
##   high                                                            0  1  0
##   identifybuild                                                   0  0  0
##   impact                                                          0  2  1
##   improving                                                       0  0  0
##   interactive                                                     0  0  0
##   journeys                                                        0  0  0
##   levels                                                          0  0  0
##   managers                                                        0  1  0
##   material                                                        0  0  0
##   mathematics                                                     0  1  0
##   mining                                                          0  1  0
##   modeling                                                        0  0  2
##   monitor                                                         0  0  0
##   narrative                                                       0  0  0
##   narratives                                                      0  0  0
##   offer                                                           0  0  0
##   offering                                                        0  0  0
##   often                                                           0  0  0
##   ownership                                                       0  1  0
##   perform                                                         0  1  0
##   physics                                                         0  0  0
##   please                                                          0  0  0
##   practiced                                                       0  0  0
##   present                                                         0  0  0
##   professionals                                                   0  0  0
##   referrals                                                       0  0  0
##   reinforces                                                      0  0  0
##   rewards                                                         0  0  0
##   run                                                             0  0  0
##   sas                                                             0  1  0
##   scientistwill                                                   0  0  0
##   stakeholders                                                    0  0  0
##   statisticml                                                     0  0  0
##   supporting                                                      0  0  0
##   talent                                                          0  0  0
##   tell                                                            0  0  0
##   test                                                            0  0  0
##   told                                                            0  0  0
##   translating                                                     0  1  0
##   unsolicited                                                     0  0  0
##   wellsupported                                                   0  0  0
##   wwwcgicom                                                       0  0  0
##   310                                                             0  0  0
##   accuracy                                                        0  0  0
##   adhoc                                                           0  0  0
##   advancements                                                    0  0  0
##   aligned                                                         0  0  0
##   amazon                                                          0  0  0
##   ambiguous                                                       0  0  0
##   aptitude                                                        0  0  0
##   around                                                          0  1  0
##   assigned                                                        0  0  0
##   assurance                                                       0  0  0
##   atmosphere                                                      0  0  0
##   attain                                                          0  0  0
##   azure                                                           0  0  0
##   clean                                                           0  0  0
##   closely                                                         0  0  1
##   concise                                                         0  0  0
##   consult                                                         0  0  0
##   conveying                                                       0  0  0
##   creation                                                        0  0  0
##   custom                                                          0  0  0
##   databases                                                       0  1  0
##   datadriven                                                      0  1  1
##   decision                                                        0  0  1
##   department                                                      0  0  0
##   derive                                                          0  0  0
##   dev                                                             0  0  0
##   ensure                                                          0  0  0
##   evaluate                                                        0  0  1
##   excellent                                                       0  0  0
##   extracted                                                       0  0  0
##   extracting                                                      0  0  0
##   fastpaced                                                       0  0  0
##   focus                                                           0  0  1
##   fulfill                                                         0  1  0
##   goals                                                           0  1  0
##   heavy                                                           0  0  0
##   highvisibility                                                  0  0  0
##   independently                                                   0  0  0
##   informing                                                       0  0  0
##   infrastructure                                                  1  0  0
##   interpersonal                                                   0  0  0
##   look                                                            0  0  0
##   makes                                                           0  0  0
##   making                                                          0  2  1
##   manipulating                                                    0  0  0
##   mindbody                                                        0  0  0
##   mindset                                                         0  0  0
##   needed                                                          0  0  1
##   numbers                                                         0  0  0
##   organized                                                       0  0  0
##   participate                                                     0  0  0
##   performing                                                      0  0  0
##   principal                                                       0  0  0
##   prod                                                            0  0  0
##   promoting                                                       0  0  0
##   pte                                                             0  0  0
##   quality                                                         0  0  2
##   quantifying                                                     0  0  0
##   redshift                                                        0  0  0
##   rest                                                            0  0  0
##   salesforce                                                      0  0  0
##   schemas                                                         0  0  0
##   scripts                                                         0  0  0
##   sense                                                           0  0  0
##   smes                                                            0  0  0
##   ssis                                                            0  0  0
##   startuplike                                                     0  0  0
##   subject                                                         0  0  0
##   tasks                                                           1  0  0
##   units                                                           0  0  0
##   usage                                                           0  0  0
##   visual                                                          0  0  0
##   write                                                           0  1  0
##   100                                                             0  0  0
##   3rd                                                             0  0  0
##   aggregation                                                     0  0  0
##   along                                                           0  0  0
##   analyses                                                        0  0  0
##   bayesian                                                        0  0  0
##   boosting                                                        0  0  0
##   bootstrap                                                       0  0  0
##   businesses                                                      0  0  0
##   california                                                      0  0  0
##   claritas                                                        0  0  0
##   communities                                                     0  1  0
##   complete                                                        0  0  0
##   consumer                                                        0  0  0
##   copper                                                          0  0  0
##   customers                                                       1  0  0
##   demand                                                          0  0  0
##   demographic                                                     0  0  0
##   descriptive                                                     0  0  0
##   desirable                                                       0  0  0
##   directly                                                        0  0  0
##   discipline                                                      0  1  0
##   document                                                        0  0  0
##   dvr                                                             0  0  0
##   econometrics                                                    0  0  0
##   effectiveness                                                   0  0  0
##   emerging                                                        0  0  0
##   enhanced                                                        0  0  0
##   enterprise                                                      0  0  0
##   evaluation                                                      0  0  0
##   fiberoptic                                                      0  0  0
##   fios                                                            0  0  0
##   firmagraphic                                                    0  0  0
##   forecasting                                                     0  0  2
##   formats                                                         0  0  0
##   fort                                                            0  0  0
##   frontier                                                        0  0  0
##   ftr                                                             0  0  0
##   gather                                                          0  0  1
##   heavily                                                         0  0  0
##   highspeed                                                       0  0  0
##   home                                                            0  2  0
##   instant                                                         0  0  0
##   instructions                                                    0  0  0
##   irving                                                          0  0  0
##   linear                                                          0  1  0
##   locale                                                          0  0  0
##   location                                                        0  0  0
##   logistic                                                        0  1  0
##   machines                                                        0  1  0
##   manipulate                                                      0  0  0
##   medium                                                          0  0  0
##   methodologies                                                   0  1  0
##   multivariate                                                    0  0  0
##   nasdaq                                                          0  0  0
##   navigate                                                        0  0  0
##   networks                                                        0  0  0
##   newly                                                           0  0  0
##   oaks                                                            0  0  0
##   offerings                                                       0  0  0
##   offers                                                          0  0  0
##   oracle                                                          0  0  0
##   oral                                                            0  0  0
##   partnering                                                      0  0  0
##   party                                                           0  0  0
##   percent                                                         0  0  0
##   picture                                                         0  0  0
##   protection                                                      0  0  0
##   providing                                                       0  1  0
##   rdbms                                                           0  0  0
##   regularly                                                       0  0  0
##   relational                                                      0  1  0
##   residential                                                     0  0  0
##   rural                                                           0  0  0
##   scenarios                                                       0  0  0
##   search                                                          0  0  1
##   secure                                                          0  0  0
##   series                                                          0  0  0
##   server                                                          0  0  0
##   servers                                                         0  0  0
##   skillsrequirements                                              0  0  0
##   someall                                                         0  0  0
##   sources                                                         0  1  2
##   southern                                                        0  0  0
##   specific                                                        0  0  0
##   ssms                                                            0  0  0
##   structures                                                      0  1  0
##   suburban                                                        0  0  0
##   suite                                                           0  0  0
##   tampa                                                           0  0  0
##   thousand                                                        0  0  0
##   total                                                           0  0  0
##   translate                                                       0  0  0
##   trees                                                           0  0  0
##   types                                                           0  0  0
##   urban                                                           0  0  0
##   vantage                                                         0  0  0
##   variety                                                         1  0  1
##   vector                                                          0  1  0
##   video                                                           0  0  0
##   voice                                                           0  0  0
##   wayne                                                           0  0  0
##   wwwfrontiercom                                                  0  0  0
##   addons                                                          0  0  0
##   amazing                                                         0  0  0
##   bonus                                                           0  0  0
##   bring                                                           0  1  1
##   catered                                                         0  0  0
##   clear                                                           0  0  0
##   clustering                                                      0  1  0
##   combine                                                         0  0  0
##   constrained                                                     0  0  0
##   continuous                                                      0  0  0
##   convey                                                          0  0  0
##   credit                                                          0  0  0
##   date                                                            0  0  0
##   decisionmaking                                                  0  0  0
##   dedicated                                                       1  0  0
##   deploying                                                       0  0  0
##   drinks                                                          0  0  0
##   economics                                                       0  0  0
##   either                                                          0  0  0
##   events                                                          0  0  0
##   executives                                                      0  0  0
##   existing                                                        0  0  0
##   fabfitfun                                                       0  0  0
##   fastgrowing                                                     0  0  0
##   free                                                            0  0  0
##   fsa                                                             0  0  0
##   get                                                             0  1  0
##   hierarchical                                                    0  0  0
##   highprofile                                                     0  0  0
##   highvolume                                                      0  0  0
##   holistic                                                        0  0  0
##   ideal                                                           0  0  0
##   inference                                                       0  0  0
##   kitchen                                                         0  0  0
##   lifetime                                                        0  0  0
##   looker                                                          0  0  0
##   maintaining                                                     0  0  0
##   masters                                                         0  0  0
##   meals                                                           0  0  0
##   natural                                                         0  2  0
##   nlp                                                             5  0  0
##   optimize                                                        0  0  0
##   optimizing                                                      0  0  0
##   phd                                                             0  1  0
##   points                                                          0  0  1
##   proven                                                          1  1  0
##   psychology                                                      0  0  0
##   pto                                                             0  0  0
##   quarterly                                                       0  0  0
##   recommender                                                     0  1  0
##   retention                                                       0  0  0
##   rich                                                            0  0  0
##   segmentation                                                    0  0  0
##   snacks                                                          0  0  0
##   start                                                           0  0  0
##   stocked                                                         0  0  0
##   store                                                           0  0  0
##   subscription                                                    0  0  0
##   surveys                                                         0  0  0
##   tackle                                                          0  0  1
##   take                                                            0  0  0
##   transactions                                                    0  0  0
##   tune                                                            0  0  0
##   unit                                                            0  0  0
##   unlimited                                                       0  0  0
##   used                                                            0  2  0
##   visualization                                                   0  0  0
##   youll                                                           0  0  0
##   2011                                                            0  0  0
##   achieve                                                         1  0  0
##   advise                                                          0  0  0
##   assess                                                          0  0  0
##   awesome                                                         0  0  0
##   back                                                            0  0  0
##   bathroom                                                        0  0  0
##   beach                                                           0  0  0
##   breathe                                                         0  0  0
##   care                                                            0  0  0
##   challenging                                                     0  0  2
##   close                                                           0  0  0
##   cluster                                                         0  0  0
##   collaboration                                                   0  1  0
##   computational                                                   0  1  0
##   computing                                                       0  1  0
##   concerns                                                        0  0  0
##   dig                                                             0  0  0
##   disrupt                                                         0  0  0
##   donnas                                                          0  0  0
##   dsc                                                             0  0  0
##   egos                                                            0  0  0
##   enthusiasm                                                      0  0  0
##   equivalent                                                      0  0  0
##   establishing                                                    0  1  0
##   estimate                                                        0  0  0
##   excellence                                                      0  0  0
##   expanded                                                        0  0  0
##   experimental                                                    0  0  0
##   feasibility                                                     0  0  0
##   fit                                                             0  0  0
##   fluency                                                         0  0  0
##   folks                                                           0  0  0
##   foundations                                                     0  0  0
##   freshly                                                         0  0  0
##   generate                                                        0  0  0
##   goal                                                            0  0  0
##   hair                                                            0  0  0
##   haircuts                                                        0  0  0
##   happy                                                           0  0  0
##   heart                                                           0  0  0
##   hours                                                           0  0  0
##   humor                                                           0  0  0
##   hypothesis                                                      0  0  0
##   implementation                                                  0  0  0
##   indepth                                                         0  0  0
##   industries                                                      0  0  0
##   jerks                                                           0  0  0
##   just                                                            0  0  0
##   killer                                                          0  0  0
##   later                                                           0  0  0
##   live                                                            0  0  0
##   lunches                                                         0  0  0
##   mathematical                                                    0  1  0
##   millions                                                        1  1  1
##   nontechnical                                                    0  0  0
##   openair                                                         0  0  0
##   owning                                                          0  0  0
##   perks                                                           0  0  0
##   plan                                                            0  1  0
##   planning                                                        0  0  0
##   predict                                                         0  0  0
##   prima                                                           0  0  0
##   principles                                                      0  0  0
##   productionize                                                   0  0  0
##   productionizing                                                 0  0  0
##   prototyping                                                     0  0  0
##   rapidly                                                         0  0  0
##   razors                                                          0  0  0
##   refactor                                                        0  0  0
##   reinventing                                                     0  0  0
##   renovated                                                       0  0  0
##   right                                                           0  1  0
##   roi                                                             0  1  0
##   said                                                            0  0  0
##   selection                                                       0  1  0
##   selflearning                                                    0  0  0
##   shave                                                           0  0  0
##   signals                                                         0  0  0
##   silicon                                                         0  0  0
##   similar                                                         0  0  0
##   skin                                                            0  0  0
##   specializes                                                     0  0  0
##   sprint                                                          0  0  0
##   squad                                                           0  0  0
##   started                                                         0  0  0
##   statements                                                      0  0  0
##   stay                                                            0  0  0
##   storytelling                                                    0  0  0
##   styling                                                         0  0  0
##   summary                                                         1  0  1
##   task                                                            0  0  0
##   teach                                                           0  0  0
##   teammates                                                       0  0  0
##   teamplaying                                                     0  0  0
##   testable                                                        0  0  0
##   think                                                           0  0  0
##   tractable                                                       0  0  0
##   transport                                                       0  0  0
##   tuning                                                          0  0  0
##   workflow                                                        0  0  0
##   wrangling                                                       0  0  0
##   496858                                                          0  0  0
##   675583                                                          0  0  0
##   advancing                                                       0  0  0
##   analyzing                                                       0  0  0
##   attach                                                          0  0  0
##   calmhsa                                                         0  0  0
##   categories                                                      0  0  0
##   certain                                                         0  0  0
##   chatting                                                        0  0  0
##   check                                                           0  0  0
##   conditions                                                      0  1  0
##   confirm                                                         0  0  0
##   contract                                                        0  0  0
##   contractor                                                      0  0  0
##   contractssubcontracts                                           0  0  0
##   covered                                                         0  0  0
##   created                                                         0  0  0
##   dana                                                            0  0  0
##   describing                                                      0  0  0
##   direction                                                       0  0  0
##   everify                                                         0  0  0
##   expected                                                        0  0  0
##   faculty                                                         0  0  0
##   federal                                                         0  2  0
##   final                                                           0  0  0
##   health                                                          0  0  0
##   incumbent                                                       0  0  0
##   inn                                                             0  0  0
##   interact                                                        2  0  1
##   interactions                                                    0  0  0
##   irvine                                                          0  0  0
##   kai                                                             0  0  0
##   listeners                                                       0  0  0
##   managing                                                        0  0  0
##   monthly                                                         0  0  0
##   mukamel                                                         0  0  0
##   multiyear                                                       0  0  0
##   nondiscrimination                                               0  0  0
##   objectives                                                      1  0  0
##   offered                                                         0  0  0
##   professors                                                      0  0  0
##   researchers                                                     0  0  0
##   resume                                                          0  0  0
##   sex                                                             0  1  0
##   statewide                                                       0  0  0
##   study                                                           0  0  0
##   substantial                                                     0  0  0
##   supervision                                                     0  0  0
##   two                                                             0  0  0
##   variables                                                       0  0  0
##   vendors                                                         0  0  0
##   zheng                                                           0  0  0
##   13485                                                           0  0  0
##   acts                                                            0  0  0
##   advance                                                         0  0  0
##   advantage                                                       0  0  0
##   alleviate                                                       0  0  0
##   amounts                                                         0  1  0
##   approaches                                                      2  0  1
##   arrangement                                                     0  0  0
##   aspects                                                         0  0  0
##   assistance                                                      0  0  0
##   automated                                                       0  0  0
##   aws                                                             1  0  0
##   careers                                                         0  1  0
##   catering                                                        0  0  0
##   central                                                         0  0  0
##   cgm                                                             0  0  0
##   chronic                                                         0  0  0
##   clinical                                                        0  0  0
##   closed                                                          0  0  0
##   conducts                                                        0  0  0
##   correct                                                         0  0  0
##   cost                                                            0  0  0
##   customized                                                      0  0  0
##   day                                                             0  1  0
##   describe                                                        0  0  0
##   develops                                                        0  0  0
##   devices                                                         0  0  0
##   diabetes                                                        0  0  0
##   difference                                                      0  1  0
##   disease                                                         0  0  0
##   driving                                                         0  2  0
##   educational                                                     0  0  0
##   elevating                                                       0  0  0
##   employee                                                        0  0  0
##   endtoend                                                        0  0  1
##   exhaustive                                                      0  0  0
##   extend                                                          0  0  0
##   family                                                          0  0  0
##   fda                                                             0  0  0
##   financial                                                       0  1  0
##   fully                                                           0  0  0
##   gain                                                            0  0  1
##   gift                                                            0  0  0
##   glucose                                                         0  0  0
##   grants                                                          0  0  0
##   grow                                                            0  2  0
##   h20ai                                                           0  0  0
##   happen                                                          0  0  0
##   healthcare                                                      0  0  0
##   innovations                                                     0  0  0
##   inspects                                                        0  0  0
##   insulin                                                         0  0  0
##   iso                                                             0  0  0
##   keep                                                            0  0  0
##   leave                                                           0  0  0
##   liaison                                                         0  0  0
##   life                                                            1  0  0
##   list                                                            0  0  0
##   lives                                                           0  0  0
##   located                                                         0  0  0
##   locations                                                       0  0  0
##   loop                                                            0  0  0
##   lowering                                                        0  0  0
##   made                                                            0  0  0
##   maintains                                                       0  0  0
##   managed                                                         0  0  0
##   manages                                                         0  0  0
##   math                                                            0  1  0
##   maximize                                                        0  0  0
##   medtronic                                                       0  0  0
##   mentality                                                       0  0  0
##   met                                                             0  0  0
##   meter                                                           0  0  0
##   mines                                                           0  0  0
##   modelling                                                       0  0  0
##   needs                                                           0  0  0
##   nonrelational                                                   0  0  0
##   novel                                                           0  0  1
##   paid                                                            0  0  0
##   pain                                                            0  0  0
##   patient                                                         0  0  0
##   patients                                                        0  0  0
##   pens                                                            0  0  0
##   physiology                                                      0  0  0
##   place                                                           0  0  0
##   positive                                                        0  0  0
##   precise                                                         0  0  0
##   prior                                                           0  0  0
##   productivity                                                    0  0  0
##   pump                                                            0  0  0
##   pumps                                                           0  0  0
##   push                                                            1  0  0
##   raise                                                           0  0  0
##   range                                                           0  0  0
##   raw                                                             0  0  0
##   record                                                          0  1  0
##   regulations                                                     0  0  0
##   remote                                                          0  0  0
##   report                                                          0  0  0
##   representative                                                  0  0  0
##   restore                                                         0  0  0
##   retirement                                                      0  2  0
##   rewarding                                                       0  0  0
##   roadmap                                                         0  0  0
##   scripting                                                       0  0  0
##   section                                                         0  0  0
##   shape                                                           0  0  0
##   simplify                                                        0  0  0
##   stock                                                           0  0  0
##   succeed                                                         0  1  0
##   successfully                                                    0  0  0
##   target                                                          0  0  0
##   thankyou                                                        0  0  0
##   therapies                                                       0  0  0
##   therapy                                                         0  0  0
##   things                                                          0  1  0
##   thrills                                                         0  0  0
##   tomorrow                                                        0  0  0
##   toward                                                          0  1  0
##   track                                                           0  1  0
##   transform                                                       0  0  0
##   transforms                                                      0  0  0
##   ultimate                                                        0  0  0
##   uninformative                                                   0  0  0
##   universal                                                       0  0  0
##   uptodate                                                        0  0  0
##   utilizing                                                       0  0  0
##   valuebased                                                      0  0  0
##   vast                                                            0  0  0
##   verifies                                                        0  0  0
##   volunteer                                                       0  0  0
##   want                                                            0  0  0
##   ways                                                            0  1  0
##   wellbeing                                                       0  0  0
##   worldwide                                                       0  0  0
##   yesterday                                                       0  0  0
##   allowing                                                        0  0  0
##   annually                                                        0  0  0
##   apache                                                          0  0  0
##   apis                                                            0  0  0
##   attendance                                                      0  0  0
##   attract                                                         0  0  0
##   availability                                                    0  0  1
##   based                                                           0  0  1
##   bestinclass                                                     0  0  0
##   bias                                                            0  0  0
##   biggest                                                         0  0  0
##   bizrate                                                         0  0  0
##   buyers                                                          0  0  0
##   capability                                                      0  0  0
##   careerboosting                                                  0  0  0
##   case                                                            0  0  0
##   choose                                                          0  0  0
##   cleansing                                                       0  0  0
##   collaborative                                                   1  0  0
##   collected                                                       0  0  0
##   communicating                                                   0  0  0
##   comprehensive                                                   0  0  0
##   conferences                                                     0  0  0
##   cons                                                            0  0  0
##   consumers                                                       0  0  0
##   continuously                                                    0  0  0
##   contributor                                                     0  0  0
##   coordinating                                                    0  0  0
##   core                                                            0  0  0
##   cover                                                           0  0  0
##   creed                                                           0  0  0
##   cross                                                           0  0  0
##   customerfacing                                                  0  0  0
##   customergenerated                                               0  0  0
##   cycle                                                           0  0  0
##   definition                                                      0  0  0
##   depending                                                       0  0  0
##   ecosystem                                                       0  0  0
##   ecosystems                                                      0  0  0
##   eeo                                                             0  0  0
##   effectively                                                     0  1  0
##   emergent                                                        0  0  0
##   evaluating                                                      0  0  0
##   excitement                                                      0  0  0
##   experiences                                                     0  0  0
##   exposed                                                         0  0  0
##   fun                                                             0  0  1
##   genetic                                                         0  1  0
##   gigabyte                                                        0  0  0
##   given                                                           0  0  0
##   hired                                                           0  0  0
##   holdout                                                         0  0  0
##   httpwwwuscisgoveverifyemployees                                 0  0  0
##   hyper                                                           0  0  0
##   integration                                                     0  0  0
##   investment                                                      0  2  0
##   likeminded                                                      0  0  0
##   local                                                           0  2  0
##   lot                                                             0  0  0
##   means                                                           0  1  0
##   measurements                                                    0  0  0
##   meredith                                                        0  0  0
##   million                                                         0  0  0
##   modelsresults                                                   0  0  0
##   move                                                            0  0  0
##   needle                                                          0  0  0
##   ones                                                            0  0  0
##   overfitting                                                     0  0  0
##   paradigm                                                        0  0  0
##   parameter                                                       0  0  0
##   participates                                                    0  0  0
##   participating                                                   0  0  0
##   parties                                                         0  0  0
##   partners                                                        0  1  0
##   persons                                                         0  0  0
##   popular                                                         0  0  0
##   practical                                                       0  0  0
##   priorities                                                      0  0  0
##   pros                                                            0  0  0
##   public                                                          0  0  0
##   ratings                                                         0  0  0
##   regardless                                                      0  0  0
##   reimbursement                                                   0  0  0
##   retail                                                          0  0  0
##   retailers                                                       0  0  0
##   rmse                                                            0  0  0
##   rocksolid                                                       0  0  0
##   rpython                                                         0  0  0
##   selflearner                                                     0  0  0
##   seller                                                          0  0  0
##   semisupervised                                                  0  0  0
##   sessions                                                        0  0  0
##   side                                                            0  0  0
##   sizes                                                           0  0  0
##   social                                                          0  0  0
##   state                                                           0  2  0
##   supportive                                                      0  0  0
##   switch                                                          0  0  0
##   technologist                                                    0  0  0
##   terabytescale                                                   0  0  0
##   thousands                                                       0  0  0
##   thrive                                                          0  0  0
##   timeline                                                        0  0  0
##   toolkits                                                        0  0  0
##   traffic                                                         0  0  0
##   tuition                                                         0  0  0
##   validation                                                      0  0  0
##   verified                                                        0  0  0
##   versa                                                           0  0  0
##   vice                                                            0  0  0
##   xgboost                                                         0  0  0
##   accomplished                                                    0  0  0
##   advisors                                                        0  0  0
##   ahead                                                           0  0  0
##   ambition                                                        0  0  0
##   becoming                                                        0  0  0
##   boasts                                                          0  0  0
##   boundless                                                       0  0  0
##   broader                                                         0  0  0
##   channels                                                        0  0  0
##   citizen                                                         0  0  0
##   citizens                                                        0  0  0
##   comfortable                                                     0  1  0
##   consistencystandardization                                      0  0  0
##   corporate                                                       0  0  0
##   coveted                                                         0  0  0
##   define                                                          0  0  0
##   defining                                                        0  0  0
##   distribution                                                    0  3  0
##   domains                                                         0  0  0
##   dont                                                            0  0  0
##   earned                                                          0  0  0
##   elite                                                           0  0  0
##   entertaining                                                    0  0  0
##   entertainment                                                   0  0  0
##   entrepreneurs                                                   0  0  0
##   environments                                                    0  0  0
##   epic                                                            0  0  0
##   exclusive                                                       0  0  0
##   forest                                                          0  0  0
##   generouslysponsored                                             0  0  0
##   giants                                                          0  0  0
##   glmregression                                                   0  0  0
##   hard                                                            0  0  0
##   head                                                            0  0  0
##   hit                                                             0  0  0
##   hollywood                                                       0  0  0
##   impacting                                                       1  0  0
##   improvements                                                    0  0  0
##   individual                                                      0  0  0
##   investors                                                       0  2  0
##   know                                                            0  0  0
##   lasting                                                         0  0  0
##   lean                                                            0  0  0
##   lifestyle                                                       0  0  0
##   mastery                                                         0  0  0
##   microstrategy                                                   0  0  0
##   movies                                                          0  0  0
##   news                                                            0  0  0
##   nonsql                                                          0  0  0
##   open                                                            0  0  0
##   opposed                                                         0  0  0
##   particularly                                                    0  0  0
##   planet                                                          0  0  0
##   plentiful                                                       0  0  0
##   pluto                                                           0  0  0
##   powerbi                                                         0  0  0
##   premier                                                         0  1  0
##   privilege                                                       0  0  0
##   proactively                                                     0  0  0
##   profoundly                                                      0  0  0
##   pull                                                            0  0  0
##   qualities                                                       0  0  0
##   quest                                                           0  0  0
##   questioning                                                     0  0  0
##   random                                                          0  0  0
##   reach                                                           0  0  0
##   renowned                                                        0  0  0
##   revolutionize                                                   0  0  0
##   scoring                                                         0  0  0
##   seemingly                                                       0  0  0
##   selective                                                       0  0  0
##   selfstarters                                                    0  0  0
##   servicing                                                       0  0  0
##   significantly                                                   0  0  0
##   smartest                                                        0  0  0
##   speed                                                           0  0  0
##   stakes                                                          0  0  0
##   starts                                                          0  0  0
##   strongly                                                        0  0  0
##   successful                                                      0  0  0
##   suggesting                                                      0  0  0
##   supported                                                       0  0  0
##   television                                                      0  0  0
##   timely                                                          0  0  0
##   treat                                                           0  0  0
##   unstructurednonstandardized                                     0  0  0
##   useful                                                          0  0  0
##   viewers                                                         0  0  0
##   warp                                                            0  0  0
##   west                                                            0  0  0
##   wide                                                            0  0  1
##   youre                                                           0  0  0
##   airflow                                                         0  0  0
##   art                                                             0  0  0
##   automotive                                                      0  0  0
##   block                                                           0  0  0
##   cars                                                            0  0  0
##   cellphone                                                       0  0  0
##   commuter                                                        0  0  0
##   competing                                                       0  0  0
##   competition                                                     0  0  0
##   construct                                                       0  0  0
##   coverage                                                        0  0  0
##   daily                                                           0  0  0
##   discount                                                        0  0  0
##   docker                                                          0  0  0
##   dollar                                                          0  0  0
##   eagerness                                                       0  0  0
##   etl                                                             0  0  0
##   fair                                                            0  0  0
##   families                                                        0  0  0
##   features                                                        0  0  0
##   flask                                                           0  0  0
##   green                                                           0  0  0
##   incentives                                                      0  0  0
##   jupyter                                                         0  0  0
##   kaggle                                                          0  0  0
##   kubernetes                                                      0  0  0
##   light                                                           0  0  0
##   luigi                                                           0  0  0
##   lunch                                                           0  0  0
##   mentorship                                                      0  0  0
##   molds                                                           0  0  0
##   onboarding                                                      0  0  0
##   owners                                                          0  0  0
##   package                                                         0  0  0
##   parking                                                         0  0  0
##   pivotal                                                         0  0  0
##   play                                                            0  0  0
##   postgres                                                        0  0  0
##   rail                                                            0  0  0
##   realtime                                                        0  0  0
##   reshape                                                         0  0  0
##   running                                                         0  0  0
##   scientistmachine                                                0  0  0
##   shopping                                                        0  0  0
##   sklearn                                                         0  0  0
##   sqlalchemy                                                      0  0  0
##   superset                                                        0  0  0
##   treasure                                                        0  0  0
##   trillion                                                        0  1  0
##   warehousing                                                     0  0  0
##   workflows                                                       0  0  0
##   accurate                                                        0  0  0
##   aggregate                                                       0  0  0
##   applied                                                         0  1  0
##   appreciated                                                     0  0  0
##   appropriate                                                     0  0  0
##   athena                                                          0  0  0
##   author                                                          0  0  0
##   brands                                                          0  0  0
##   breaking                                                        0  0  0
##   broadly                                                         0  0  0
##   command                                                         0  0  0
##   competency                                                      0  0  0
##   components                                                      0  0  0
##   crossfunctionally                                               0  0  1
##   delivered                                                       0  0  0
##   establish                                                       0  0  0
##   established                                                     0  0  0
##   evaluations                                                     0  0  0
##   expand                                                          0  0  0
##   explanation                                                     0  0  0
##   factual                                                         0  0  0
##   factuals                                                        0  0  0
##   filter                                                          0  0  0
##   greatly                                                         0  0  0
##   guidance                                                        0  0  0
##   guide                                                           0  0  0
##   handle                                                          0  0  0
##   happening                                                       0  0  0
##   impactful                                                       0  0  0
##   increasing                                                      0  0  0
##   industryleading                                                 0  0  0
##   influence                                                       0  0  0
##   intelligently                                                   0  0  0
##   interpret                                                       0  1  0
##   known                                                           0  0  0
##   knows                                                           0  0  0
##   learnings                                                       0  0  0
##   letters                                                         0  0  0
##   line                                                            0  0  0
##   love                                                            0  0  0
##   marketers                                                       0  0  0
##   matched                                                         0  0  0
##   messy                                                           0  0  0
##   places                                                          0  0  0
##   prescribe                                                       0  0  0
##   propose                                                         0  0  0
##   questions                                                       0  0  0
##   really                                                          0  0  0
##   recommended                                                     0  0  0
##   sell                                                            0  0  0
##   several                                                         0  0  0
##   sharing                                                         0  0  0
##   shell                                                           0  0  0
##   specifications                                                  0  0  0
##   structure                                                       0  0  0
##   teaching                                                        0  0  0
##   thanks                                                          0  0  0
##   trust                                                           0  0  0
##   uncertainty                                                     0  0  0
##   underlying                                                      0  0  0
##   understands                                                     0  0  0
##   utilities                                                       0  0  0
##   variance                                                        0  0  0
##   willingness                                                     0  0  0
##   wrangle                                                         0  0  0
##   almost                                                          0  0  0
##   artistic                                                        0  0  0
##   ashamed                                                         0  0  0
##   augmenting                                                      0  0  0
##   away                                                            0  0  0
##   bokeh                                                           0  0  0
##   buzz                                                            0  0  0
##   classifiers                                                     0  0  0
##   coming                                                          0  0  0
##   considering                                                     0  0  0
##   constantly                                                      0  0  0
##   creativity                                                      0  0  0
##   credentials                                                     0  0  0
##   dark                                                            0  0  0
##   demo                                                            0  0  0
##   didnt                                                           0  0  0
##   discussions                                                     0  0  0
##   don                                                             0  0  0
##   drama                                                           0  0  0
##   dry                                                             0  0  0
##   enjoying                                                        0  0  0
##   everybody                                                       0  0  0
##   everything                                                      0  0  0
##   facing                                                          0  0  0
##   fear                                                            0  0  0
##   feel                                                            0  0  0
##   finds                                                           0  0  0
##   floor                                                           0  0  0
##   frequent                                                        0  0  0
##   frequently                                                      0  0  0
##   generation                                                      0  0  0
##   github                                                          0  0  0
##   ground                                                          0  0  0
##   handful                                                         0  0  0
##   hidden                                                          0  0  0
##   hobby                                                           0  0  0
##   hole                                                            0  0  0
##   hone                                                            0  0  0
##   ingesting                                                       0  0  0
##   integrity                                                       0  1  0
##   knowledgegraphs                                                 0  0  0
##   laid                                                            0  0  0
##   late                                                            0  0  0
##   likely                                                          0  0  0
##   linkedin                                                        0  0  0
##   links                                                           0  0  0
##   little                                                          0  0  0
##   matplotlib                                                      0  0  0
##   mildly                                                          0  0  0
##   modularization                                                  0  0  0
##   music                                                           0  0  0
##   near                                                            0  0  0
##   night                                                           0  0  0
##   number                                                          0  0  0
##   occasional                                                      0  0  0
##   occurrences                                                     0  0  0
##   politics                                                        0  0  0
##   portfolio                                                       0  0  0
##   practice                                                        0  0  0
##   pragmatist                                                      0  0  0
##   prefer                                                          0  0  0
##   presenting                                                      0  0  0
##   prevent                                                         0  0  0
##   purist                                                          0  0  0
##   rather                                                          0  0  0
##   reflect                                                         0  0  0
##   reuse                                                           0  0  0
##   résumé                                                          0  0  0
##   score                                                           0  0  0
##   selecting                                                       0  0  0
##   semantic                                                        0  0  0
##   serverside                                                      0  0  0
##   smarter                                                         0  0  0
##   sounds                                                          0  0  0
##   specializing                                                    0  0  0
##   spend                                                           0  0  0
##   stats                                                           0  0  0
##   still                                                           0  0  0
##   strive                                                          0  0  0
##   summarization                                                   0  0  0
##   thing                                                           0  0  0
##   thirdparty                                                      0  0  0
##   topic                                                           1  0  0
##   topics                                                          0  0  0
##   uncovering                                                      0  0  0
##   verifying                                                       0  0  0
##   acquisition                                                     0  0  0
##   adoption                                                        0  0  0
##   centene                                                         0  0  0
##   claims                                                          0  0  0
##   db2                                                             0  0  0
##   different                                                       0  0  0
##   distinguish                                                     0  0  0
##   durability                                                      0  0  0
##   expectations                                                    0  0  1
##   experiments                                                     1  0  0
##   exploratory                                                     0  0  0
##   format                                                          0  0  0
##   hana                                                            0  0  0
##   improvement                                                     0  0  1
##   informatics                                                     0  0  0
##   knowledgeexperience                                             0  1  0
##   liaisons                                                        0  0  0
##   measure                                                         0  0  0
##   membership                                                      0  0  0
##   mysql                                                           0  0  0
##   presentations                                                   0  0  1
##   provider                                                        0  0  0
##   recognize                                                       0  0  0
##   sap                                                             0  0  0
##   scale                                                           0  0  1
##   targeted                                                        0  0  0
##   teradata                                                        0  0  0
##   validate                                                        0  0  0
##   values                                                          0  1  0
##   adept                                                           0  0  0
##   advantagesdrawbacks                                             0  0  0
##   adwords                                                         0  0  0
##   artificial                                                      1  0  0
##   becseeitis                                                      0  0  0
##   catalyst                                                        0  0  0
##   coremetrics                                                     0  0  0
##   courses                                                         0  0  0
##   creatingrunning                                                 0  0  0
##   crimson                                                         0  0  0
##   datacomputing                                                   0  0  0
##   digitalocean                                                    0  0  0
##   draw                                                            0  0  0
##   education                                                       0  1  0
##   framework                                                       0  1  0
##   gained                                                          0  0  0
##   ggplot                                                          0  0  0
##   gurobi                                                          0  0  0
##   hexagon                                                         0  0  0
##   inflight                                                        0  0  0
##   mine                                                            0  0  0
##   miningdata                                                      0  0  0
##   multimedia                                                      0  0  0
##   objects                                                         0  0  0
##   performance                                                     0  1  0
##   periscope                                                       0  0  0
##   primary                                                         0  0  0
##   providers                                                       0  0  0
##   scenario                                                        0  0  0
##   secondary                                                       0  0  0
##   simulations                                                     0  0  0
##   site                                                            0  0  0
##   slq                                                             0  0  0
##   tree                                                            0  1  0
##   usingcreating                                                   0  0  0
##   visualizingpresenting                                           0  0  0
##   600                                                             0  0  0
##   adtech                                                          0  0  0
##   backgrounds                                                     0  0  0
##   balance                                                         0  0  0
##   causal                                                          0  0  0
##   cities                                                          0  0  0
##   crosschannel                                                    0  0  0
##   demonstrable                                                    0  0  0
##   eaters                                                          0  0  0
##   forward                                                         0  0  0
##   grade                                                           0  0  0
##   growth                                                          0  0  0
##   hunger                                                          0  0  0
##   ignite                                                          0  0  0
##   ltv                                                             0  0  0
##   marketindividual                                                0  0  0
##   meeting                                                         0  0  0
##   motion                                                          0  0  0
##   moving                                                          0  0  0
##   planningprioritization                                          0  0  0
##   player                                                          0  0  0
##   prioritization                                                  0  0  0
##   response                                                        0  0  0
##   riders                                                          0  0  0
##   seek                                                            0  0  0
##   spirit                                                          0  0  0
##   stakeholder                                                     0  0  0
##   swift                                                           0  0  0
##   welcome                                                         0  0  0
##   1236                                                            0  0  0
##   answer                                                          0  0  0
##   apparel                                                         0  0  0
##   assortment                                                      0  0  0
##   backtest                                                        0  0  0
##   behaviors                                                       0  0  0
##   brand                                                           0  0  0
##   bright                                                          0  0  0
##   brightest                                                       0  0  0
##   colorful                                                        0  0  0
##   commerce                                                        0  0  0
##   community                                                       0  0  0
##   compare                                                         0  0  0
##   continually                                                     0  0  0
##   course                                                          0  0  0
##   curates                                                         0  0  0
##   currently                                                       1  0  0
##   customerdriven                                                  0  0  0
##   decor                                                           0  0  0
##   designers                                                       0  0  0
##   designs                                                         0  0  0
##   digitally                                                       0  0  0
##   drives                                                          0  0  0
##   dynamic                                                         0  0  0
##   effort                                                          0  0  0
##   empathy                                                         0  0  0
##   empower                                                         0  0  0
##   engagement                                                      0  0  1
##   engaging                                                        0  0  0
##   exist                                                           0  0  0
##   fashion                                                         0  0  0
##   feminine                                                        0  0  0
##   generated                                                       0  0  0
##   greatwhat                                                       0  0  0
##   grounded                                                        0  0  0
##   honesty                                                         0  0  0
##   hundred                                                         0  0  0
##   inhouse                                                         0  0  0
##   inside                                                          0  0  0
##   inspired                                                        0  0  0
##   inspiring                                                       0  0  0
##   intellectual                                                    0  0  0
##   intersection                                                    0  1  0
##   investing                                                       0  0  0
##   iterative                                                       0  0  0
##   javascript                                                      0  0  0
##   kind                                                            0  0  0
##   leverages                                                       0  0  0
##   leveraging                                                      0  1  0
##   linux                                                           0  0  0
##   matterwhat                                                      0  0  0
##   modcloth                                                        0  0  0
##   monthsis                                                        0  0  0
##   native                                                          0  0  0
##   note                                                            0  0  0
##   offline                                                         0  0  0
##   omnichannel                                                     0  0  0
##   outcomeswhy                                                     0  0  0
##   particular                                                      0  0  0
##   performances                                                    0  0  0
##   prints                                                          0  0  0
##   professional                                                    0  0  0
##   retaining                                                       0  0  0
##   sells                                                           0  0  0
##   sentiment                                                       1  0  0
##   sequence                                                        0  0  0
##   signature                                                       0  0  0
##   silhouettes                                                     0  0  0
##   sit                                                             0  0  0
##   stem                                                            0  0  0
##   style                                                           0  0  0
##   unparalleled                                                    0  0  0
##   upon                                                            0  0  0
##   version                                                         0  0  0
##   vintage                                                         0  0  0
##   wants                                                           0  0  0
##   warehouse                                                       0  0  0
##   whats                                                           0  0  0
##   adventure                                                       0  0  0
##   awaits                                                          0  0  0
##   bcg                                                             0  0  0
##   bcgdvcom                                                        0  0  0
##   collaborating                                                   0  0  0
##   cultivate                                                       0  0  0
##   dashboard                                                       0  0  0
##   demonstrate                                                     0  0  0
##   deployed                                                        0  0  0
##   evergrowing                                                     0  0  0
##   fast                                                            0  0  0
##   filtering                                                       0  0  0
##   flurry                                                          0  0  0
##   foundation                                                      0  0  0
##   graph                                                           0  0  0
##   graphing                                                        0  0  0
##   hadoopmapreduce                                                 0  0  0
##   httpswwwbcgdvcom                                                0  0  0
##   ingestion                                                       0  0  0
##   interested                                                      0  0  0
##   interviews                                                      0  0  0
##   least                                                           1  2  0
##   listed                                                          0  0  0
##   mixpanel                                                        0  0  0
##   onpremises                                                      0  0  0
##   pair                                                            0  0  0
##   querying                                                        0  0  0
##   ranging                                                         0  0  0
##   remarkable                                                      0  0  0
##   restricted                                                      0  0  0
##   resumes                                                         0  0  0
##   screened                                                        0  0  0
##   solely                                                          0  0  0
##   strategic                                                       0  1  0
##   talks                                                           0  0  0
##   though                                                          0  0  0
##   varied                                                          0  0  0
##   ventures                                                        0  0  0
##   website                                                         0  0  0
##   additionally                                                    0  0  0
##   autonomously                                                    0  0  0
##   classic                                                         0  0  0
##   clearances                                                      0  0  0
##   compliment                                                      0  0  0
##   cores                                                           0  0  0
##   fpga                                                            0  0  0
##   matlab                                                          0  1  0
##   qualify                                                         0  0  0
##   replace                                                         0  0  0
##   signal                                                          0  0  0
##   softwaredefined                                                 0  0  0
##   studying                                                        0  0  0
##   transceivers                                                    0  0  0
##   unixlinux                                                       0  0  0
##   3103365432                                                      0  0  0
##   accommodation                                                   0  0  0
##   adapt                                                           0  0  0
##   analytic                                                        0  2  0
##   ancestry                                                        0  1  0
##   api                                                             0  0  0
##   applicationsystem                                               0  0  0
##   assessment                                                      0  0  0
##   caffetensorflow                                                 0  0  0
##   character                                                       0  0  0
##   childbirth                                                      0  1  0
##   collecting                                                      0  0  0
##   condition                                                       0  1  0
##   configuration                                                   0  0  0
##   consistent                                                      0  0  0
##   contact                                                         0  0  0
##   detailoriented                                                  0  0  0
##   disabled                                                        0  0  0
##   distributions                                                   0  0  0
##   email                                                           0  0  0
##   estimators                                                      0  0  0
##   extracurricular                                                 0  0  0
##   featuredriven                                                   0  0  0
##   forests                                                         0  0  0
##   forwith                                                         0  0  0
##   fromexposing                                                    0  0  0
##   gpa                                                             0  0  0
##   ieomailboxaeroorg                                               0  0  0
##   imagesignal                                                     0  0  0
##   institution                                                     0  0  0
##   interdisciplinary                                               0  0  0
##   interest                                                        0  0  0
##   interfaces                                                      0  0  0
##   json                                                            0  0  0
##   keen                                                            0  0  0
##   knearest                                                        0  0  0
##   leads                                                           0  0  0
##   library                                                         0  0  0
##   lifecycles                                                      0  0  0
##   likelihood                                                      0  0  0
##   maturity                                                        0  0  0
##   maximum                                                         0  0  1
##   missioncritical                                                 0  0  0
##   neighbors                                                       0  0  0
##   objectivity                                                     0  0  0
##   octavematlab                                                    0  0  0
##   opencv                                                          0  0  0
##   operating                                                       0  0  0
##   organizational                                                  0  0  0
##   participation                                                   0  0  0
##   path                                                            0  0  0
##   pertinent                                                       0  0  0
##   positions                                                       0  0  0
##   pregnancy                                                       0  1  0
##   presentation                                                    0  0  0
##   prevalence                                                      0  0  0
##   progress                                                        0  0  0
##   proofofconcept                                                  0  0  0
##   prove                                                           0  0  0
##   pursuing                                                        0  0  0
##   recognized                                                      0  0  0
##   resilient                                                       0  0  0
##   responsibility                                                  0  0  0
##   selected                                                        0  0  0
##   socially                                                        0  0  0
##   softwaresystem                                                  0  0  0
##   softwaresystems                                                 0  0  0
##   spent                                                           0  0  0
##   standards                                                       0  0  0
##   technically                                                     0  0  0
##   typically                                                       0  0  0
##   utilization                                                     0  0  0
##   viability                                                       0  0  0
##   virtualizationcloud                                             0  0  0
##   xml                                                             0  0  0
##   advantages                                                      0  0  0
##   anywhere                                                        0  0  0
##   careersbcgdvcomlearnmore                                        0  0  0
##   competencies                                                    0  0  0
##   cutting                                                         0  1  0
##   edge                                                            0  1  0
##   horizon                                                         0  0  0
##   manhattan                                                       0  0  0
##   truly                                                           0  0  1
##   accenture                                                       0  0  0
##   acceptance                                                      0  0  0
##   adapting                                                        0  0  0
##   affiliated                                                      0  0  0
##   affirmative                                                     0  0  0
##   alternate                                                       0  0  0
##   approach                                                        0  0  0
##   architect                                                       0  0  0
##   arrest                                                          0  0  0
##   aspirant                                                        0  0  0
##   assesses                                                        0  0  0
##   assets                                                          0  2  0
##   assignments                                                     0  0  0
##   basic                                                           0  0  0
##   cases                                                           0  0  0
##   centre                                                          0  0  0
##   certifications                                                  0  0  0
##   chain                                                           0  0  0
##   conceptual                                                      0  0  0
##   conceptualize                                                   0  0  0
##   conducted                                                       0  0  0
##   considered                                                      0  0  0
##   contribution                                                    0  0  0
##   corner                                                          0  0  0
##   delivers                                                        0  0  0
##   determine                                                       0  0  0
##   disclose                                                        0  0  0
##   eligible                                                        0  0  0
##   employed                                                        0  0  0
##   enhancing                                                       0  0  0
##   executive                                                       0  0  0
##   expunged                                                        0  0  0
##   factors                                                         0  0  0
##   femalesminoritiesveteransindividuals                            0  0  0
##   firsttomarket                                                   0  0  0
##   flink                                                           0  0  0
##   follows                                                         0  0  0
##   fulfilment                                                      0  0  0
##   fundamental                                                     0  0  0
##   fuzzy                                                           0  0  0
##   globe                                                           0  0  0
##   handling                                                        0  0  0
##   human                                                           0  0  0
##   identifies                                                      0  0  0
##   indicators                                                      0  0  0
##   industrialorganizational                                        0  0  0
##   interacts                                                       0  0  0
##   intermediate                                                    0  0  0
##   iot                                                             0  0  0
##   julia                                                           0  0  0
##   labs                                                            0  0  0
##   logic                                                           0  0  0
##   machinelearning                                                 0  0  0
##   mark                                                            0  0  0
##   markov                                                          0  0  0
##   matters                                                         0  0  0
##   men                                                             0  0  0
##   mobility                                                        0  0  0
##   nonparametric                                                   0  0  0
##   obligated                                                       0  0  0
##   outcome                                                         0  0  0
##   pivot                                                           0  0  0
##   projectbased                                                    0  0  0
##   records                                                         0  0  0
##   redefine                                                        0  0  0
##   reliability                                                     0  0  0
##   robotics                                                        0  0  0
##   scheduling                                                      0  0  0
##   sealed                                                          0  0  0
##   shall                                                           0  0  0
##   situations                                                      0  0  0
##   sized                                                           0  0  0
##   solves                                                          0  0  0
##   source                                                          0  0  0
##   stochastic                                                      0  0  0
##   supply                                                          0  0  0
##   term                                                            0  0  0
##   variable                                                        0  0  0
##   versed                                                          0  0  0
##   women                                                           0  0  0
##   01162019                                                        0  0  0
##   aaid                                                            0  0  0
##   analyticsleading                                                0  0  0
##   anomaly                                                         0  0  0
##   architecting                                                    0  0  0
##   arima                                                           0  0  0
##   arma                                                            0  0  0
##   articulating                                                    0  0  0
##   assessments                                                     0  0  0
##   carlo                                                           0  0  0
##   categorical                                                     0  0  0
##   categorize                                                      0  0  0
##   civil                                                           0  0  0
##   collect                                                         0  0  0
##   comprised                                                       0  0  0
##   conference                                                      0  0  0
##   consistently                                                    0  0  0
##   correlation                                                     0  0  0
##   crossdomain                                                     0  0  0
##   crossprogram                                                    0  0  0
##   dimension                                                       0  0  0
##   dod                                                             0  0  0
##   eight                                                           0  0  0
##   emphasis                                                        0  0  0
##   engrg                                                           0  0  0
##   followup                                                        0  0  0
##   forming                                                         0  0  0
##   frontend                                                        0  0  0
##   implications                                                    0  0  0
##   issue                                                           0  0  0
##   languagedevelopment                                             0  0  0
##   monte                                                           0  0  0
##   multidisciplinary                                               0  0  0
##   narx                                                            0  0  0
##   papersarticles                                                  0  0  0
##   preference                                                      0  0  0
##   programmatic                                                    0  0  0
##   published                                                       0  0  0
##   reduction                                                       0  0  0
##   relate                                                          0  0  0
##   resulting                                                       0  0  0
##   risk                                                            0  0  0
##   sci                                                             0  0  0
##   scipy                                                           0  0  0
##   significant                                                     0  1  0
##   specialists                                                     0  0  0
##   steward                                                         0  0  0
##   summarize                                                       0  0  0
##   tailoring                                                       0  0  0
##   threats                                                         0  0  0
##   toolset                                                         0  0  0
##   twelve                                                          0  0  0
##   vehicle                                                         0  0  0
##   adobe                                                           0  0  0
##   affinities                                                      0  0  0
##   asks                                                            0  0  0
##   audience                                                        0  0  0
##   audiences                                                       0  0  0
##   bigpicture                                                      0  0  0
##   bluekai                                                         0  0  0
##   bottom                                                          0  0  0
##   businesssavvy                                                   0  0  0
##   collaboratively                                                 0  0  0
##   confidently                                                     0  0  0
##   conscientious                                                   0  0  0
##   controlled                                                      0  0  0
##   depth                                                           0  0  0
##   disney                                                          0  0  0
##   distill                                                         0  0  0
##   dmp                                                             0  0  0
##   dmps                                                            0  0  0
##   dtci                                                            0  0  0
##   examining                                                       0  0  0
##   handsonexecution                                                0  0  0
##   hivehadoopcloud                                                 0  0  0
##   hypotheses                                                      0  0  0
##   intellectually                                                  0  0  0
##   international                                                   0  0  0
##   lookalike                                                       0  0  0
##   mathstatistics                                                  0  0  0
##   mba                                                             0  0  0
##   measurable                                                      0  0  0
##   monetization                                                    0  0  0
##   multichannel                                                    0  0  0
##                                                                 Docs
## Terms                                                            39 40
##   125m                                                            0  0
##   401k                                                            0  0
##   900b                                                            0  0
##   able                                                            0  0
##   activities                                                      0  0
##   alerts                                                          0  0
##   allow                                                           0  0
##   also                                                            0  0
##   analysis                                                        1  3
##   anova                                                           0  0
##   app                                                             0  0
##   apple                                                           0  0
##   applying                                                        0  0
##   area                                                            0  0
##   ask                                                             0  1
##   assembled                                                       0  0
##   auc                                                             0  0
##   automate                                                        0  0
##   automation                                                      0  0
##   background                                                      0  0
##   base                                                            0  0
##   become                                                          0  0
##   benefits                                                        1  0
##   boldly                                                          0  0
##   brookfield                                                      0  0
##   building                                                        0  3
##   business                                                        1  5
##   calculate                                                       0  0
##   can                                                             0  0
##   candidate                                                       0  1
##   canonical                                                       0  0
##   capacity                                                        0  0
##   capital                                                         0  0
##   challenge                                                       0  0
##   changes                                                         0  0
##   chung                                                           0  0
##   cleaning                                                        0  0
##   code                                                            0  0
##   coding                                                          0  1
##   commands                                                        0  0
##   communicate                                                     0  0
##   communicator                                                    0  0
##   companies                                                       0  0
##   company                                                         0  2
##   compelling                                                      0  0
##   competitive                                                     0  0
##   completing                                                      0  0
##   concepts                                                        1  1
##   connect                                                         0  0
##   contribute                                                      0  0
##   country                                                         0  0
##   create                                                          0  0
##   creating                                                        0  0
##   criteria                                                        0  0
##   curiosity                                                       0  0
##   data                                                            8 20
##   dataset                                                         0  0
##   deep                                                            0  0
##   delivering                                                      0  0
##   dental                                                          0  0
##   designed                                                        0  0
##   differences                                                     0  0
##   digitizing                                                      0  0
##   doesnt                                                          0  0
##   domain                                                          1  0
##   done                                                            0  0
##   drayage                                                         0  0
##   drive                                                           0  5
##   driven                                                          1  0
##   drivers                                                         0  0
##   dynamics                                                        0  0
##   easy                                                            0  0
##   efficiencies                                                    0  0
##   elton                                                           0  0
##   end                                                             0  0
##   engage                                                          0  0
##   entire                                                          0  0
##   equity                                                          0  0
##   evidence                                                        0  0
##   exact                                                           0  0
##   examples                                                        0  0
##   execute                                                         0  0
##   experience                                                      8  4
##   explain                                                         0  0
##   feature                                                         0  0
##   find                                                            0  1
##   finding                                                         0  0
##   first                                                           0  0
##   fleet                                                           0  0
##   follow                                                          0  0
##   founded                                                         0  0
##   freight                                                         0  0
##   full                                                            0  0
##   functions                                                       0  0
##   general                                                         0  0
##   generalize                                                      0  0
##   gofundme                                                        0  0
##   google                                                          0  0
##   great                                                           0  0
##   guidelines                                                      0  0
##   happiest                                                        0  0
##   harness                                                         0  0
##   haves                                                           0  0
##   higher                                                          0  0
##   holidays                                                        0  0
##   hope                                                            0  0
##   hygiene                                                         0  0
##   idealab                                                         0  0
##   identify                                                        0  1
##   identifying                                                     0  0
##   includes                                                        1  0
##   including                                                       3  0
##   increased                                                       0  0
##   industry                                                        1  0
##   initial                                                         0  0
##   instantly                                                       0  0
##   interpretable                                                   0  0
##   intuitive                                                       0  0
##   issues                                                          0  0
##   kareo                                                           0  0
##   knowledgeable                                                   0  0
##   kpis                                                            0  0
##   language                                                        1  1
##   largest                                                         0  0
##   learn                                                           0  1
##   learning                                                        4  3
##   led                                                             0  0
##   level                                                           1  0
##   leverage                                                        1  0
##   lidia                                                           0  0
##   like                                                            0  0
##   load                                                            0  0
##   loads                                                           0  0
##   logistics                                                       0  0
##   looking                                                         0  0
##   machine                                                         4  2
##   maintainable                                                    0  0
##   make                                                            0  1
##   marketplace                                                     0  0
##   match                                                           0  0
##   matching                                                        0  0
##   meaningful                                                      0  0
##   measured                                                        0  0
##   medical                                                         0  0
##   metrics                                                         0  0
##   mission                                                         1  3
##   mobile                                                          0  0
##   model                                                           0  1
##   models                                                          0  6
##   movement                                                        0  0
##   need                                                            0  0
##   next                                                            0  0
##   nice                                                            0  0
##   ondemand                                                        0  0
##   one                                                             0  2
##   opportunities                                                   0  2
##   optimization                                                    0  2
##   otherwise                                                       0  0
##   outcomes                                                        0  4
##   overall                                                         0  0
##   packages                                                        0  0
##   people                                                          0  0
##   person                                                          0  0
##   pipelineperform                                                 0  0
##   pipelines                                                       0  0
##   platform                                                        0  0
##   point                                                           0  0
##   potential                                                       0  0
##   power                                                           0  0
##   powers                                                          0  0
##   precisionrecall                                                 0  0
##   previously                                                      1  0
##   process                                                         0  3
##   processing                                                      1  1
##   product                                                         0  0
##   prototype                                                       0  0
##   provide                                                         0  0
##   python                                                          0  1
##   pythonr                                                         0  0
##   raised                                                          0  0
##   rate                                                            0  0
##   real                                                            0  0
##   relationships                                                   0  0
##   reporting                                                       0  0
##   reproducible                                                    0  0
##   resolve                                                         0  0
##   rigorous                                                        0  0
##   robinson                                                        0  0
##   salary                                                          0  0
##   sales                                                           0  0
##   sample                                                          0  0
##   science                                                         4  2
##   sequoia                                                         0  0
##   setting                                                         0  0
##   shippers                                                        0  0
##   shipping                                                        0  0
##   shows                                                           0  0
##   simple                                                          0  1
##   size                                                            0  0
##   someone                                                         0  0
##   specifically                                                    1  0
##   splits                                                          0  0
##   sql                                                             0  1
##   startup                                                         0  0
##   statistical                                                     1  2
##   strategies                                                      0  1
##   success                                                         0  1
##   systems                                                         2  0
##   tables                                                          0  0
##   taking                                                          0  0
##   taught                                                          0  0
##   team                                                            3  0
##   teams                                                           0  4
##   tech                                                            0  0
##   technology                                                      2  0
##   tests                                                           0  1
##   throughout                                                      0  1
##   time                                                            0  0
##   tooling                                                         0  0
##   toolsets                                                        0  0
##   tracking                                                        0  0
##   training                                                        1  1
##   traintest                                                       0  0
##   transformations                                                 0  0
##   transforming                                                    0  0
##   transparency                                                    0  0
##   truckercentric                                                  0  0
##   truckers                                                        0  0
##   trucking                                                        0  0
##   trusting                                                        0  0
##   ttest                                                           0  0
##   understanding                                                   0  2
##   unix                                                            0  0
##   updates                                                         0  0
##   use                                                             0  1
##   utility                                                         0  0
##   vacation                                                        0  0
##   venture                                                         0  0
##   venturebacked                                                   0  0
##   virtual                                                         0  0
##   vision                                                          0  0
##   visualizations                                                  1  0
##   way                                                             0  0
##   web                                                             0  0
##   whatever                                                        0  0
##   within                                                          0  0
##   words                                                           0  0
##   work                                                            0  1
##   worked                                                          0  0
##   works                                                           0  1
##   yan                                                             0  0
##   years                                                           2  2
##   360b                                                            0  0
##   algorithms                                                      0  2
##   analytics                                                       4  0
##   andor                                                           0  0
##   bachelor                                                        0  0
##   basis                                                           0  0
##   behavior                                                        0  0
##   believe                                                         0  0
##   big                                                             1  1
##   builds                                                          0  0
##   chance                                                          0  0
##   channel                                                         0  0
##   cloud                                                           3  0
##   committed                                                       0  0
##   comparable                                                      0  0
##   complex                                                         2  0
##   computation                                                     0  0
##   content                                                         0  0
##   conversion                                                      0  0
##   critical                                                        0  0
##   customer                                                        0  0
##   database                                                        0  0
##   decided                                                         0  0
##   decisions                                                       0  1
##   degree                                                          2  1
##   deliver                                                         0  0
##   design                                                          1  0
##   discovery                                                       0  0
##   distributed                                                     0  0
##   diversity                                                       0  0
##   downtown                                                        0  0
##   editorial                                                       0  0
##   editors                                                         0  0
##   employees                                                       0  2
##   employer                                                        0  0
##   employment                                                      0  0
##   engine                                                          0  0
##   environment                                                     0  0
##   equal                                                           0  0
##   field                                                           2  1
##   forms                                                           0  0
##   fox                                                             0  0
##   good                                                            0  0
##   hadoop                                                          0  0
##   hbase                                                           0  0
##   hdfs                                                            0  0
##   helps                                                           0  0
##   hiring                                                          0  0
##   hive                                                            0  0
##   hyperintelligent                                                0  0
##   implement                                                       1  1
##   inclusive                                                       0  0
##   increase                                                        0  1
##   informed                                                        0  0
##   initiatives                                                     0  0
##   innovating                                                      0  0
##   innovative                                                      0  0
##   interesting                                                     0  0
##   internet                                                        0  0
##   javascala                                                       0  0
##   job                                                             1  1
##   join                                                            0  0
##   kafka                                                           0  0
##   largescale                                                      0  0
##   leading                                                         0  0
##   loaded                                                          0  0
##   log                                                             0  0
##   maintain                                                        0  0
##   mapreduce                                                       0  0
##   massive                                                         0  0
##   merit                                                           0  0
##   month                                                           0  0
##   nbc                                                             0  0
##   newsroom                                                        0  0
##   nosql                                                           0  0
##   online                                                          0  0
##   opportunity                                                     1  0
##   personalization                                                 0  0
##   petabyte                                                        0  0
##   pig                                                             0  0
##   plus                                                            0  0
##   populate                                                        0  0
##   powered                                                         0  0
##   prediction                                                      0  0
##   predictive                                                      0  2
##   preferably                                                      0  0
##   production                                                      0  0
##   products                                                        0  0
##   programming                                                     0  0
##   publisher                                                       0  0
##   qualifications                                                  2  1
##   quantitative                                                    0  1
##   query                                                           0  1
##   reached                                                         0  0
##   read                                                            0  0
##   readership                                                      0  0
##   recommendation                                                  0  0
##   recommendations                                                 0  0
##   related                                                         2  0
##   requirements                                                    1  0
##   robust                                                          1  0
##   scaling                                                         0  0
##   scientist                                                       0  2
##   senior                                                          1  0
##   serving                                                         1  0
##   set                                                             0  0
##   sites                                                           0  0
##   solutions                                                       2  2
##   something                                                       0  0
##   spark                                                           0  0
##   specialinterest                                                 0  0
##   sports                                                          0  0
##   stack                                                           0  0
##   statisticsbased                                                 0  0
##   storage                                                         0  0
##   streaming                                                       0  0
##   support                                                         1  1
##   taboola                                                         0  0
##   targeting                                                       0  1
##   theres                                                          0  0
##   today                                                           0  0
##   tool                                                            0  0
##   transformation                                                  0  0
##   tribune                                                         0  0
##   unique                                                          0  0
##   usa                                                             0  0
##   users                                                           0  0
##   value                                                           0  0
##   visitors                                                        0  0
##   weather                                                         0  0
##   webs                                                            0  0
##   world                                                           0  0
##   worlds                                                          0  0
##   writers                                                         0  0
##   128                                                             0  0
##   144                                                             0  0
##   200000                                                          0  0
##   2017                                                            0  0
##   50year                                                          0  0
##   accommodations                                                  0  0
##   acquire                                                         0  0
##   across                                                          1  1
##   address                                                         0  0
##   adherence                                                       0  0
##   advanced                                                        3  1
##   age                                                             0  0
##   agile                                                           0  0
##   ambitions                                                       0  0
##   analysts                                                        0  0
##   analyticscientific                                              0  0
##   applicant                                                       0  0
##   applicants                                                      0  0
##   application                                                     1  0
##   applications                                                    1  1
##   apps                                                            0  0
##   architects                                                      0  0
##   architecture                                                    1  0
##   array                                                           0  0
##   assign                                                          0  0
##   attempt                                                         0  0
##   authorization                                                   0  0
##   available                                                       0  0
##   average                                                         0  0
##   billion                                                         1  0
##   breadth                                                         0  0
##   bug                                                             0  0
##   candidates                                                      0  0
##   capabilities                                                    0  0
##   capgemini                                                       0  0
##   changing                                                        0  0
##   characteristic                                                  0  0
##   click                                                           0  0
##   clients                                                         0  0
##   collaborate                                                     0  0
##   comes                                                           0  0
##   computer                                                        3  1
##   consider                                                        0  0
##   consideration                                                   0  0
##   consulting                                                      0  0
##   contemporary                                                    0  0
##   conviction                                                      0  0
##   coordinate                                                      0  1
##   count                                                           0  0
##   countries                                                       0  0
##   curation                                                        0  0
##   customize                                                       0  0
##   datasets                                                        0  0
##   delivery                                                        0  0
##   demands                                                         0  0
##   deploy                                                          0  0
##   deployment                                                      0  0
##   description                                                     1  0
##   designing                                                       0  0
##   develop                                                         0  2
##   developer                                                       0  0
##   developing                                                      0  0
##   development                                                     2  0
##   digital                                                         0  0
##   disabilities                                                    0  0
##   disability                                                      0  0
##   disseminate                                                     0  0
##   documentation                                                   0  0
##   documenting                                                     0  0
##   duties                                                          0  0
##   enable                                                          0  0
##   enables                                                         0  0
##   encouraging                                                     0  0
##   engineering                                                     5  0
##   enhance                                                         0  0
##   ensuring                                                        1  0
##   environmental                                                   0  0
##   eur                                                             0  0
##   evolving                                                        0  0
##   experienced                                                     0  0
##   expert                                                          1  0
##   expertise                                                       3  0
##   feedback                                                        0  0
##   fixing                                                          0  0
##   flexible                                                        0  0
##   following                                                       0  0
##   forefront                                                       0  0
##   frameworks                                                      0  0
##   function                                                        0  0
##   functional                                                      0  2
##   future                                                          0  0
##   gathering                                                       0  0
##   gender                                                          0  0
##   genetics                                                        0  0
##   global                                                          0  0
##   group                                                           0  0
##   guiding                                                         0  0
##   hardship                                                        0  0
##   help                                                            0  2
##   heritage                                                        0  0
##   httpwwwcapgeminicomresourcesequalemploymentopportunityisthelaw  0  0
##   identityexpression                                              0  0
##   implementing                                                    0  1
##   include                                                         0  0
##   individuals                                                     0  0
##   industryspecific                                                0  0
##   inform                                                          0  0
##   information                                                     2  0
##   innovation                                                      0  0
##   intended                                                        0  0
##   interpreting                                                    0  0
##   involve                                                         0  0
##   java                                                            0  0
##   junior                                                          0  0
##   knowledge                                                       1  1
##   landscape                                                       0  0
##   languages                                                       0  1
##   large                                                           0  3
##   law                                                             0  0
##   leader                                                          0  0
##   leadership                                                      1  1
##   lifecycle                                                       0  0
##   limited                                                         0  0
##   link                                                            0  0
##   manage                                                          0  0
##   management                                                      2  0
##   manipulation                                                    0  0
##   manner                                                          0  1
##   manufacturers                                                   0  0
##   marital                                                         0  0
##   matter                                                          0  0
##   may                                                             0  0
##   meetings                                                        0  0
##   members                                                         0  1
##   mental                                                          0  0
##   mentor                                                          0  0
##   mentoring                                                       0  0
##   methods                                                         0  0
##   might                                                           0  0
##   min                                                             0  0
##   monitoring                                                      0  0
##   multicultural                                                   0  0
##   must                                                            0  4
##   national                                                        0  0
##   necessary                                                       0  1
##   new                                                             0  1
##   now                                                             0  0
##   operations                                                      2  0
##   organizations                                                   0  0
##   orientation                                                     0  0
##   origin                                                          0  0
##   performed                                                       0  0
##   personnel                                                       0  0
##   physical                                                        0  0
##   platforms                                                       0  0
##   policies                                                        0  0
##   pose                                                            0  0
##   position                                                        0  0
##   prioritizing                                                    0  0
##   processes                                                       1  1
##   proficiency                                                     0  1
##   proficient                                                      0  0
##   program                                                         1  0
##   programmers                                                     0  0
##   programs                                                        0  0
##   project                                                         1  0
##   projectprogram                                                  0  0
##   projects                                                        0  0
##   protected                                                       0  0
##   provided                                                        0  0
##   qualified                                                       0  0
##   queuing                                                         0  0
##   race                                                            0  0
##   rawinterim                                                      0  0
##   realize                                                         0  0
##   reasonable                                                      0  0
##   receive                                                         0  0
##   referenced                                                      0  0
##   regard                                                          0  0
##   release                                                         0  0
##   relevant                                                        0  0
##   religion                                                        0  0
##   reported                                                        0  0
##   represent                                                       0  0
##   requests                                                        0  0
##   require                                                         0  0
##   required                                                        2  0
##   requirement                                                     0  0
##   responsibilities                                                0  0
##   responsible                                                     0  0
##   results                                                         0  2
##   revenues                                                        1  0
##   review                                                          0  0
##   reviewing                                                       0  0
##   reviews                                                         0  0
##   rights                                                          0  0
##   role                                                            0  0
##   rshiny                                                          0  0
##   scala                                                           0  0
##   sensory                                                         0  0
##   services                                                        1  0
##   sets                                                            0  5
##   sexual                                                          0  0
##   shiny                                                           0  0
##   skills                                                          0  1
##   software                                                        3  0
##   solution                                                        1  0
##   sponsor                                                         0  0
##   sponsorship                                                     0  0
##   status                                                          0  0
##   strategy                                                        0  0
##   strong                                                          1  1
##   supervise                                                       0  0
##   technical                                                       5  0
##   techniques                                                      0  6
##   testing                                                         0  0
##   tools                                                           1  3
##   traditionally                                                   0  0
##   train                                                           0  0
##   undue                                                           0  0
##   usd                                                             0  0
##   user                                                            0  0
##   valid                                                           0  0
##   various                                                         0  0
##   varying                                                         0  0
##   veteran                                                         0  0
##   visa                                                            0  0
##   visit                                                           1  0
##   visualize                                                       0  0
##   whenever                                                        0  0
##   willing                                                         0  0
##   without                                                         0  0
##   workplace                                                       0  0
##   written                                                         0  1
##   wwwcapgeminicom                                                 0  0
##   ability                                                         2  1
##   advertising                                                     0  0
##   always                                                          0  0
##   analyst                                                         0  0
##   analytical                                                      1  0
##   analyze                                                         0  2
##   arise                                                           0  0
##   attention                                                       0  0
##   attribution                                                     0  0
##   best                                                            0  0
##   better                                                          0  1
##   blended                                                         0  0
##   campaigns                                                       0  0
##   client                                                          1  0
##   combined                                                        0  0
##   creative                                                        0  0
##   crossfunctional                                                 0  0
##   cuttingedge                                                     0  0
##   dataminer                                                       0  0
##   dedication                                                      0  0
##   desire                                                          0  0
##   detail                                                          0  0
##   developers                                                      0  0
##   direct                                                          0  0
##   efficiency                                                      0  0
##   excel                                                           0  0
##   exceptional                                                     0  0
##   execution                                                       0  0
##   external                                                        0  2
##   findings                                                        0  0
##   gurudata                                                        0  0
##   healthy                                                         0  2
##   hoc                                                             0  0
##   important                                                       0  0
##   improve                                                         0  1
##   innovator                                                       0  0
##   integral                                                        0  0
##   intelligence                                                    1  0
##   intermedia                                                      0  0
##   internal                                                        0  1
##   investments                                                     0  0
##   manager                                                         0  0
##   market                                                          0  0
##   marketing                                                       0  0
##   master                                                          0  1
##   media                                                           0  0
##   microsoft                                                       0  0
##   multitask                                                       0  0
##   operational                                                     0  0
##   order                                                           0  0
##   part                                                            0  0
##   past                                                            0  0
##   patterns                                                        1  0
##   practices                                                       0  0
##   previous                                                        0  0
##   prime                                                           0  0
##   prioritize                                                      0  0
##   problem                                                         0  0
##   procedures                                                      0  0
##   produce                                                         0  0
##   professionally                                                  0  0
##   promote                                                         0  0
##   proprietary                                                     0  0
##   provides                                                        0  0
##   qlikview                                                        0  0
##   queries                                                         0  0
##   reliably                                                        0  0
##   reports                                                         0  0
##   research                                                        2  0
##   resources                                                       0  0
##   resultsoriented                                                 0  0
##   return                                                          0  0
##   revenue                                                         0  0
##   scientistvisualization                                          0  0
##   seeking                                                         1  0
##   service                                                         0  0
##   solving                                                         1  0
##   special                                                         0  0
##   standard                                                        0  0
##   stored                                                          0  0
##   tableau                                                         0  0
##   technologies                                                    1  1
##   thinking                                                        0  0
##   thorough                                                        0  0
##   top                                                             0  1
##   traditional                                                     0  0
##   trends                                                          0  0
##   understand                                                      0  0
##   vital                                                           0  0
##   writing                                                         1  0
##   applicable                                                      0  0
##   clearly                                                         0  0
##   defined                                                         0  0
##   electrical                                                      0  0
##   fields                                                          0  1
##   fluent                                                          0  0
##   graduate                                                        0  0
##   insight                                                         0  0
##   problems                                                        0  0
##   pulling                                                         0  0
##   scope                                                           0  0
##   solve                                                           0  0
##   undergraduate                                                   0  0
##   1960                                                            0  0
##   access                                                          0  0
##   accredited                                                      0  0
##   achievable                                                      0  0
##   action                                                          0  0
##   active                                                          0  0
##   actively                                                        0  0
##   additional                                                      1  0
##   adversarial                                                     0  0
##   advisory                                                        0  0
##   aerospace                                                       0  0
##   afraid                                                          0  0
##   air                                                             1  0
##   algorithm                                                       0  0
##   among                                                           0  0
##   angeles                                                         0  0
##   anomalies                                                       0  0
##   apply                                                           1  1
##   architectures                                                   0  0
##   areas                                                           0  0
##   aspiration                                                      0  0
##   asset                                                           0  0
##   attack                                                          0  0
##   attacks                                                         0  0
##   bachelors                                                       0  0
##   beyond                                                          0  0
##   bigger                                                          0  0
##   bus                                                             0  0
##   career                                                          0  0
##   center                                                          0  0
##   challenges                                                      1  0
##   chosen                                                          0  0
##   citizenship                                                     2  0
##   clandestine                                                     0  0
##   classification                                                  0  0
##   classifier                                                      0  0
##   clearance                                                       2  0
##   collection                                                      0  0
##   color                                                           0  0
##   comfort                                                         0  0
##   commercial                                                      0  0
##   commitment                                                      0  1
##   common                                                          0  1
##   communication                                                   0  1
##   communications                                                  0  0
##   compartmented                                                   0  0
##   competitions                                                    0  0
##   competitor                                                      0  0
##   conduct                                                         0  0
##   corporation                                                     0  0
##   creates                                                         0  0
##   curious                                                         0  0
##   current                                                         0  0
##   cyber                                                           1  0
##   datacentric                                                     0  0
##   datascience                                                     0  0
##   demonstrated                                                    0  0
##   described                                                       0  0
##   details                                                         0  0
##   detect                                                          0  0
##   developed                                                       0  0
##   differing                                                       0  0
##   discriminated                                                   0  0
##   diverse                                                         0  0
##   eager                                                           0  0
##   economic                                                        0  0
##   effective                                                       0  0
##   efforts                                                         0  1
##   else                                                            0  0
##   enforcement                                                     0  0
##   engineer                                                        0  0
##   engineers                                                       0  0
##   every                                                           0  0
##   everyone                                                        0  0
##   excited                                                         0  0
##   existence                                                       0  0
##   expect                                                          0  0
##   explore                                                         1  0
##   exploring                                                       0  0
##   expression                                                      0  0
##   extensive                                                       0  0
##   extremely                                                       0  0
##   facilities                                                      0  0
##   familiarity                                                     0  0
##   federally                                                       0  0
##   ffrdc                                                           0  0
##   filled                                                          0  0
##   focused                                                         0  0
##   force                                                           1  0
##   formulation                                                     0  0
##   funded                                                          0  0
##   gamechanging                                                    0  0
##   gnu                                                             0  0
##   government                                                      0  0
##   gpus                                                            0  0
##   greatest                                                        0  0
##   groups                                                          0  0
##   growing                                                         0  0
##   handson                                                         0  0
##   hardware                                                        0  0
##   highly                                                          0  1
##   ideas                                                           0  0
##   identity                                                        0  0
##   image                                                           0  0
##   impossible                                                      0  0
##   inception                                                       0  0
##   independent                                                     0  2
##   innovators                                                      0  0
##   instead                                                         0  0
##   intelligent                                                     0  0
##   interview                                                       0  0
##   issued                                                          0  0
##   kagglelike                                                      0  0
##   keras                                                           0  0
##   key                                                             0  0
##   laboratory                                                      0  0
##   latest                                                          1  0
##   launch                                                          0  0
##   lead                                                            0  0
##   leaders                                                         0  0
##   let                                                             0  0
##   libraries                                                       0  0
##   limits                                                          0  0
##   literally                                                       0  0
##   los                                                             0  0
##   main                                                            0  0
##   major                                                           0  0
##   meet                                                            1  0
##   member                                                          0  0
##   membrtch                                                        0  0
##   methodology                                                     0  0
##   minds                                                           0  0
##   minimum                                                         0  0
##   modern                                                          0  0
##   much                                                            0  0
##   multiple                                                        1  0
##   nations                                                         1  0
##   nature                                                          0  0
##   nearest                                                         0  0
##   network                                                         0  0
##   neural                                                          0  1
##   neurons                                                         0  0
##   none                                                            0  0
##   objective                                                       0  0
##   obtain                                                          2  0
##   obtaining                                                       0  0
##   office                                                          0  0
##   operate                                                         0  0
##   opportunityaffirmative                                          0  0
##   others                                                          0  0
##   partner                                                         0  0
##   pass                                                            0  0
##   passion                                                         0  1
##   passionate                                                      0  1
##   pay                                                             0  0
##   perspectives                                                    0  0
##   platypus                                                        0  0
##   policy                                                          0  0
##   polygraph                                                       0  0
##   possible                                                        0  0
##   poster                                                          0  0
##   potentially                                                     0  0
##   preferred                                                       1  0
##   pride                                                           0  0
##   problemsolving                                                  0  0
##   producing                                                       0  0
##   prototypes                                                      0  0
##   pushing                                                         0  0
##   pytorch                                                         0  0
##   radio                                                           0  0
##   radios                                                          0  0
##   rare                                                            0  0
##   readiness                                                       0  0
##   ready                                                           0  0
##   realworld                                                       0  1
##   reconnaissance                                                  0  0
##   regression                                                      0  1
##   regular                                                         0  0
##   reinforcement                                                   0  0
##   relocation                                                      0  0
##   requires                                                        0  0
##   requisition                                                     0  0
##   resource                                                        0  0
##   satellite                                                       0  0
##   schedule                                                        0  0
##   scientific                                                      0  0
##   scientists                                                      0  0
##   scikitlearn                                                     0  0
##   secret                                                          0  0
##   security                                                        0  0
##   segment                                                         0  0
##   sensitive                                                       0  0
##   serve                                                           0  0
##   share                                                           0  0
##   simulation                                                      1  0
##   simultaneously                                                  0  0
##   since                                                           0  0
##   skilled                                                         0  0
##   small                                                           0  0
##   solid                                                           0  0
##   space                                                           3  0
##   spacerelated                                                    0  0
##   spanning                                                        0  0
##   specialist                                                      0  0
##   specialized                                                     0  0
##   staff                                                           0  0
##   staffed                                                         0  0
##   statement                                                       0  0
##   stateoftheart                                                   0  0
##   states                                                          0  0
##   stf                                                             0  0
##   strength                                                        0  0
##   studies                                                         0  0
##   superior                                                        0  0
##   supervised                                                      0  0
##   supplement                                                      0  0
##   system                                                          0  0
##   takes                                                           0  0
##   technologically                                                 0  0
##   telecom                                                         0  0
##   telecommunication                                               0  0
##   telecommunications                                              0  0
##   tensorflow                                                      0  0
##   theano                                                          0  0
##   theoretical                                                     0  0
##   theoretically                                                   0  0
##   thought                                                         0  0
##   title                                                           0  0
##   transcript                                                      0  0
##   transcripts                                                     0  0
##   trusted                                                         0  0
##   tssci                                                           0  0
##   type                                                            0  0
##   unconventional                                                  0  0
##   united                                                          1  0
##   university                                                      0  0
##   unsupervised                                                    0  0
##   valued                                                          0  0
##   veles                                                           0  0
##   verbal                                                          0  1
##   well                                                            0  0
##   whose                                                           0  0
##   workforce                                                       0  0
##   working                                                         1  2
##   yes                                                             0  0
##   zone                                                            0  0
##   acumen                                                          0  0
##   agent                                                           0  0
##   agree                                                           0  0
##   amongst                                                         0  0
##   ample                                                           0  0
##   capable                                                         0  0
##   composed                                                        0  0
##   contacted                                                       0  0
##   enjoy                                                           0  0
##   essential                                                       0  0
##   experts                                                         0  1
##   extract                                                         0  0
##   facebook                                                        0  0
##   fulltime                                                        0  1
##   hands                                                           0  0
##   hire                                                            0  0
##   inc                                                             0  0
##   indeed                                                          0  0
##   insights                                                        0  3
##   mind                                                            0  0
##   motivated                                                       0  0
##   numpy                                                           0  0
##   pandas                                                          0  0
##   papers                                                          0  0
##   phone                                                           0  0
##   productize                                                      0  0
##   quickly                                                         0  0
##   rely                                                            0  0
##   scalable                                                        0  0
##   sciencerelated                                                  0  0
##   sparkscalajava                                                  0  0
##   statistics                                                      2  1
##   structured                                                      1  2
##   text                                                            0  0
##   theory                                                          0  0
##   together                                                        0  0
##   uber                                                            0  0
##   unstructured                                                    1  2
##   valuable                                                        0  0
##   via                                                             0  0
##   worldclass                                                      0  0
##   year                                                            0  0
##   accelerate                                                      0  0
##   actionable                                                      0  0
##   actions                                                         0  0
##   addition                                                        0  0
##   adequately                                                      0  0
##   agency                                                          0  0
##   assist                                                          0  0
##   benefit                                                         0  0
##   cgi                                                             0  0
##   change                                                          0  0
##   collectively                                                    0  0
##   college                                                         0  0
##   come                                                            0  0
##   continues                                                       0  0
##   culture                                                         0  0
##   dashboards                                                      0  0
##   datahadoopnosql                                                 0  0
##   desired                                                         0  0
##   discover                                                        0  0
##   discovering                                                     1  1
##   doctorate                                                       0  0
##   eco                                                             0  0
##   engineeringscience                                              0  0
##   exciting                                                        0  0
##   exploration                                                     0  0
##   extraordinary                                                   0  0
##   firms                                                           0  0
##   fouryear                                                        0  0
##   graduation                                                      0  0
##   helping                                                         0  0
##   heuristics                                                      0  0
##   high                                                            1  0
##   identifybuild                                                   0  0
##   impact                                                          0  0
##   improving                                                       0  0
##   interactive                                                     0  0
##   journeys                                                        0  0
##   levels                                                          0  0
##   managers                                                        0  0
##   material                                                        0  0
##   mathematics                                                     1  1
##   mining                                                          1  0
##   modeling                                                        0  0
##   monitor                                                         0  2
##   narrative                                                       0  0
##   narratives                                                      0  0
##   offer                                                           0  0
##   offering                                                        0  0
##   often                                                           0  0
##   ownership                                                       0  0
##   perform                                                         0  0
##   physics                                                         0  0
##   please                                                          0  0
##   practiced                                                       0  0
##   present                                                         0  1
##   professionals                                                   0  0
##   referrals                                                       0  0
##   reinforces                                                      0  0
##   rewards                                                         0  0
##   run                                                             0  0
##   sas                                                             0  1
##   scientistwill                                                   0  0
##   stakeholders                                                    0  3
##   statisticml                                                     0  0
##   supporting                                                      0  0
##   talent                                                          0  0
##   tell                                                            0  1
##   test                                                            0  0
##   told                                                            0  0
##   translating                                                     0  0
##   unsolicited                                                     0  0
##   wellsupported                                                   0  0
##   wwwcgicom                                                       0  0
##   310                                                             0  0
##   accuracy                                                        0  2
##   adhoc                                                           0  1
##   advancements                                                    0  0
##   aligned                                                         0  0
##   amazon                                                          0  0
##   ambiguous                                                       0  0
##   aptitude                                                        0  0
##   around                                                          0  0
##   assigned                                                        0  0
##   assurance                                                       0  0
##   atmosphere                                                      0  0
##   attain                                                          0  0
##   azure                                                           0  0
##   clean                                                           0  1
##   closely                                                         0  0
##   concise                                                         0  0
##   consult                                                         0  0
##   conveying                                                       0  0
##   creation                                                        0  0
##   custom                                                          0  1
##   databases                                                       0  1
##   datadriven                                                      0  1
##   decision                                                        0  1
##   department                                                      0  0
##   derive                                                          0  0
##   dev                                                             0  0
##   ensure                                                          0  0
##   evaluate                                                        0  0
##   excellent                                                       0  2
##   extracted                                                       0  0
##   extracting                                                      0  0
##   fastpaced                                                       0  0
##   focus                                                           0  0
##   fulfill                                                         0  0
##   goals                                                           0  0
##   heavy                                                           0  0
##   highvisibility                                                  0  0
##   independently                                                   0  0
##   informing                                                       0  0
##   infrastructure                                                  1  0
##   interpersonal                                                   0  0
##   look                                                            0  0
##   makes                                                           0  0
##   making                                                          0  0
##   manipulating                                                    0  0
##   mindbody                                                        0  0
##   mindset                                                         0  0
##   needed                                                          0  1
##   numbers                                                         0  0
##   organized                                                       0  0
##   participate                                                     0  0
##   performing                                                      0  0
##   principal                                                       0  0
##   prod                                                            0  0
##   promoting                                                       0  0
##   pte                                                             0  0
##   quality                                                         0  2
##   quantifying                                                     0  0
##   redshift                                                        0  0
##   rest                                                            0  0
##   salesforce                                                      0  0
##   schemas                                                         0  0
##   scripts                                                         0  0
##   sense                                                           0  0
##   smes                                                            0  0
##   ssis                                                            0  0
##   startuplike                                                     0  0
##   subject                                                         0  0
##   tasks                                                           0  0
##   units                                                           0  0
##   usage                                                           0  1
##   visual                                                          0  0
##   write                                                           0  0
##   100                                                             0  0
##   3rd                                                             0  0
##   aggregation                                                     0  0
##   along                                                           0  0
##   analyses                                                        0  0
##   bayesian                                                        0  0
##   boosting                                                        0  0
##   bootstrap                                                       0  0
##   businesses                                                      0  0
##   california                                                      0  1
##   claritas                                                        0  0
##   communities                                                     0  0
##   complete                                                        0  0
##   consumer                                                        0  0
##   copper                                                          0  0
##   customers                                                       0  0
##   demand                                                          0  0
##   demographic                                                     0  0
##   descriptive                                                     0  0
##   desirable                                                       0  1
##   directly                                                        0  0
##   discipline                                                      0  0
##   document                                                        0  0
##   dvr                                                             0  0
##   econometrics                                                    0  0
##   effectiveness                                                   0  0
##   emerging                                                        0  0
##   enhanced                                                        0  0
##   enterprise                                                      2  0
##   evaluation                                                      0  0
##   fiberoptic                                                      0  0
##   fios                                                            0  0
##   firmagraphic                                                    0  0
##   forecasting                                                     0  0
##   formats                                                         0  0
##   fort                                                            0  0
##   frontier                                                        0  0
##   ftr                                                             0  0
##   gather                                                          0  0
##   heavily                                                         0  0
##   highspeed                                                       0  0
##   home                                                            0  0
##   instant                                                         0  0
##   instructions                                                    0  0
##   irving                                                          0  0
##   linear                                                          0  0
##   locale                                                          0  0
##   location                                                        0  0
##   logistic                                                        0  0
##   machines                                                        0  0
##   manipulate                                                      0  0
##   medium                                                          0  0
##   methodologies                                                   0  0
##   multivariate                                                    0  0
##   nasdaq                                                          0  0
##   navigate                                                        0  0
##   networks                                                        0  1
##   newly                                                           0  0
##   oaks                                                            0  0
##   offerings                                                       1  0
##   offers                                                          1  0
##   oracle                                                          0  0
##   oral                                                            0  0
##   partnering                                                      0  0
##   party                                                           0  0
##   percent                                                         0  0
##   picture                                                         0  0
##   protection                                                      0  0
##   providing                                                       0  0
##   rdbms                                                           0  0
##   regularly                                                       0  0
##   relational                                                      1  0
##   residential                                                     0  0
##   rural                                                           0  0
##   scenarios                                                       0  0
##   search                                                          0  0
##   secure                                                          0  0
##   series                                                          0  0
##   server                                                          0  0
##   servers                                                         0  0
##   skillsrequirements                                              0  0
##   someall                                                         0  0
##   sources                                                         1  0
##   southern                                                        0  0
##   specific                                                        0  0
##   ssms                                                            0  0
##   structures                                                      0  0
##   suburban                                                        0  0
##   suite                                                           0  0
##   tampa                                                           0  0
##   thousand                                                        0  0
##   total                                                           0  0
##   translate                                                       0  0
##   trees                                                           0  0
##   types                                                           0  0
##   urban                                                           0  0
##   vantage                                                         0  0
##   variety                                                         0  2
##   vector                                                          0  0
##   video                                                           0  0
##   voice                                                           0  0
##   wayne                                                           0  0
##   wwwfrontiercom                                                  0  0
##   addons                                                          0  0
##   amazing                                                         0  0
##   bonus                                                           0  0
##   bring                                                           0  0
##   catered                                                         0  0
##   clear                                                           0  1
##   clustering                                                      0  1
##   combine                                                         0  0
##   constrained                                                     0  0
##   continuous                                                      0  0
##   convey                                                          0  0
##   credit                                                          0  0
##   date                                                            0  0
##   decisionmaking                                                  0  0
##   dedicated                                                       0  0
##   deploying                                                       0  0
##   drinks                                                          0  0
##   economics                                                       0  0
##   either                                                          0  0
##   events                                                          0  0
##   executives                                                      1  0
##   existing                                                        0  0
##   fabfitfun                                                       0  0
##   fastgrowing                                                     0  0
##   free                                                            0  0
##   fsa                                                             0  0
##   get                                                             0  0
##   hierarchical                                                    0  0
##   highprofile                                                     0  0
##   highvolume                                                      0  0
##   holistic                                                        0  0
##   ideal                                                           0  0
##   inference                                                       0  0
##   kitchen                                                         0  0
##   lifetime                                                        0  0
##   looker                                                          0  0
##   maintaining                                                     0  0
##   masters                                                         0  1
##   meals                                                           0  0
##   natural                                                         1  1
##   nlp                                                             0  0
##   optimize                                                        0  1
##   optimizing                                                      0  1
##   phd                                                             0  1
##   points                                                          0  0
##   proven                                                          0  1
##   psychology                                                      0  0
##   pto                                                             0  0
##   quarterly                                                       0  0
##   recommender                                                     0  0
##   retention                                                       0  0
##   rich                                                            0  0
##   segmentation                                                    0  0
##   snacks                                                          0  0
##   start                                                           0  0
##   stocked                                                         0  0
##   store                                                           0  0
##   subscription                                                    0  0
##   surveys                                                         0  0
##   tackle                                                          0  0
##   take                                                            0  0
##   transactions                                                    0  0
##   tune                                                            0  0
##   unit                                                            0  0
##   unlimited                                                       0  0
##   used                                                            0  1
##   visualization                                                   0  0
##   youll                                                           0  0
##   2011                                                            0  0
##   achieve                                                         0  0
##   advise                                                          0  0
##   assess                                                          0  0
##   awesome                                                         0  0
##   back                                                            0  0
##   bathroom                                                        0  0
##   beach                                                           0  1
##   breathe                                                         0  0
##   care                                                            0  0
##   challenging                                                     0  0
##   close                                                           0  0
##   cluster                                                         0  0
##   collaboration                                                   0  0
##   computational                                                   0  0
##   computing                                                       0  0
##   concerns                                                        0  0
##   dig                                                             0  0
##   disrupt                                                         0  0
##   donnas                                                          0  0
##   dsc                                                             0  0
##   egos                                                            0  0
##   enthusiasm                                                      0  0
##   equivalent                                                      1  0
##   establishing                                                    0  0
##   estimate                                                        0  0
##   excellence                                                      0  1
##   expanded                                                        0  0
##   experimental                                                    0  0
##   feasibility                                                     0  0
##   fit                                                             0  0
##   fluency                                                         0  0
##   folks                                                           0  0
##   foundations                                                     0  0
##   freshly                                                         0  0
##   generate                                                        0  0
##   goal                                                            1  0
##   hair                                                            0  0
##   haircuts                                                        0  0
##   happy                                                           0  0
##   heart                                                           0  0
##   hours                                                           0  0
##   humor                                                           0  0
##   hypothesis                                                      0  0
##   implementation                                                  0  0
##   indepth                                                         0  0
##   industries                                                      0  0
##   jerks                                                           0  0
##   just                                                            0  0
##   killer                                                          0  0
##   later                                                           0  0
##   live                                                            0  1
##   lunches                                                         0  0
##   mathematical                                                    1  0
##   millions                                                        0  0
##   nontechnical                                                    0  0
##   openair                                                         0  0
##   owning                                                          0  0
##   perks                                                           0  0
##   plan                                                            0  1
##   planning                                                        0  0
##   predict                                                         0  0
##   prima                                                           0  0
##   principles                                                      0  0
##   productionize                                                   0  0
##   productionizing                                                 0  0
##   prototyping                                                     0  0
##   rapidly                                                         0  0
##   razors                                                          0  0
##   refactor                                                        0  0
##   reinventing                                                     0  0
##   renovated                                                       0  0
##   right                                                           0  1
##   roi                                                             0  0
##   said                                                            0  0
##   selection                                                       0  0
##   selflearning                                                    0  0
##   shave                                                           0  0
##   signals                                                         0  0
##   silicon                                                         0  0
##   similar                                                         0  0
##   skin                                                            0  0
##   specializes                                                     0  0
##   sprint                                                          0  0
##   squad                                                           0  0
##   started                                                         0  0
##   statements                                                      0  0
##   stay                                                            0  0
##   storytelling                                                    0  0
##   styling                                                         0  0
##   summary                                                         0  0
##   task                                                            0  0
##   teach                                                           0  0
##   teammates                                                       0  0
##   teamplaying                                                     0  0
##   testable                                                        0  0
##   think                                                           0  0
##   tractable                                                       0  0
##   transport                                                       0  0
##   tuning                                                          0  0
##   workflow                                                        1  0
##   wrangling                                                       0  0
##   496858                                                          0  0
##   675583                                                          0  0
##   advancing                                                       0  0
##   analyzing                                                       0  1
##   attach                                                          0  0
##   calmhsa                                                         0  0
##   categories                                                      0  0
##   certain                                                         0  0
##   chatting                                                        0  0
##   check                                                           0  0
##   conditions                                                      0  0
##   confirm                                                         0  0
##   contract                                                        0  0
##   contractor                                                      0  0
##   contractssubcontracts                                           0  0
##   covered                                                         0  0
##   created                                                         0  0
##   dana                                                            0  0
##   describing                                                      0  0
##   direction                                                       0  0
##   everify                                                         0  0
##   expected                                                        0  0
##   faculty                                                         0  0
##   federal                                                         1  0
##   final                                                           0  0
##   health                                                          0  1
##   incumbent                                                       0  0
##   inn                                                             0  0
##   interact                                                        0  0
##   interactions                                                    0  0
##   irvine                                                          0  0
##   kai                                                             0  0
##   listeners                                                       0  0
##   managing                                                        0  0
##   monthly                                                         0  0
##   mukamel                                                         0  0
##   multiyear                                                       0  0
##   nondiscrimination                                               0  0
##   objectives                                                      0  0
##   offered                                                         0  0
##   professors                                                      0  0
##   researchers                                                     0  0
##   resume                                                          0  0
##   sex                                                             0  0
##   statewide                                                       0  0
##   study                                                           0  0
##   substantial                                                     0  0
##   supervision                                                     0  0
##   two                                                             0  0
##   variables                                                       0  0
##   vendors                                                         0  0
##   zheng                                                           0  0
##   13485                                                           0  0
##   acts                                                            0  0
##   advance                                                         0  0
##   advantage                                                       0  1
##   alleviate                                                       0  0
##   amounts                                                         0  0
##   approaches                                                      0  0
##   arrangement                                                     0  0
##   aspects                                                         0  0
##   assistance                                                      0  0
##   automated                                                       0  0
##   aws                                                             0  0
##   careers                                                         0  0
##   catering                                                        0  0
##   central                                                         0  0
##   cgm                                                             0  0
##   chronic                                                         0  0
##   clinical                                                        0  0
##   closed                                                          0  0
##   conducts                                                        0  0
##   correct                                                         0  0
##   cost                                                            0  0
##   customized                                                      0  0
##   day                                                             0  0
##   describe                                                        0  0
##   develops                                                        0  0
##   devices                                                         0  0
##   diabetes                                                        0  0
##   difference                                                      0  0
##   disease                                                         0  0
##   driving                                                         0  0
##   educational                                                     0  0
##   elevating                                                       0  0
##   employee                                                        0  0
##   endtoend                                                        0  0
##   exhaustive                                                      0  0
##   extend                                                          0  0
##   family                                                          0  0
##   fda                                                             0  0
##   financial                                                       0  0
##   fully                                                           0  0
##   gain                                                            0  0
##   gift                                                            0  0
##   glucose                                                         0  0
##   grants                                                          0  0
##   grow                                                            0  0
##   h20ai                                                           0  0
##   happen                                                          0  0
##   healthcare                                                      0  1
##   innovations                                                     0  0
##   inspects                                                        0  0
##   insulin                                                         0  0
##   iso                                                             0  0
##   keep                                                            0  0
##   leave                                                           0  0
##   liaison                                                         0  0
##   life                                                            0  0
##   list                                                            0  0
##   lives                                                           0  1
##   located                                                         0  0
##   locations                                                       0  0
##   loop                                                            0  0
##   lowering                                                        0  0
##   made                                                            0  0
##   maintains                                                       0  0
##   managed                                                         0  0
##   manages                                                         0  0
##   math                                                            0  0
##   maximize                                                        0  0
##   medtronic                                                       0  0
##   mentality                                                       0  0
##   met                                                             0  0
##   meter                                                           0  0
##   mines                                                           0  0
##   modelling                                                       0  0
##   needs                                                           0  0
##   nonrelational                                                   0  0
##   novel                                                           0  0
##   paid                                                            0  0
##   pain                                                            0  0
##   patient                                                         0  0
##   patients                                                        0  0
##   pens                                                            0  0
##   physiology                                                      0  0
##   place                                                           0  0
##   positive                                                        0  0
##   precise                                                         0  0
##   prior                                                           0  0
##   productivity                                                    0  0
##   pump                                                            0  0
##   pumps                                                           0  0
##   push                                                            0  0
##   raise                                                           0  0
##   range                                                           0  1
##   raw                                                             0  0
##   record                                                          0  0
##   regulations                                                     0  0
##   remote                                                          0  0
##   report                                                          0  0
##   representative                                                  0  0
##   restore                                                         0  0
##   retirement                                                      0  0
##   rewarding                                                       0  0
##   roadmap                                                         0  0
##   scripting                                                       0  0
##   section                                                         0  0
##   shape                                                           0  0
##   simplify                                                        0  0
##   stock                                                           0  0
##   succeed                                                         0  0
##   successfully                                                    0  0
##   target                                                          0  0
##   thankyou                                                        0  0
##   therapies                                                       0  0
##   therapy                                                         0  0
##   things                                                          0  0
##   thrills                                                         0  0
##   tomorrow                                                        0  0
##   toward                                                          0  0
##   track                                                           0  0
##   transform                                                       0  0
##   transforms                                                      0  0
##   ultimate                                                        0  0
##   uninformative                                                   0  0
##   universal                                                       0  0
##   uptodate                                                        0  0
##   utilizing                                                       0  0
##   valuebased                                                      0  0
##   vast                                                            0  0
##   verifies                                                        0  0
##   volunteer                                                       0  0
##   want                                                            0  0
##   ways                                                            0  0
##   wellbeing                                                       0  0
##   worldwide                                                       0  0
##   yesterday                                                       0  0
##   allowing                                                        0  0
##   annually                                                        0  0
##   apache                                                          0  0
##   apis                                                            0  0
##   attendance                                                      0  0
##   attract                                                         0  0
##   availability                                                    0  0
##   based                                                           0  1
##   bestinclass                                                     0  0
##   bias                                                            0  0
##   biggest                                                         0  0
##   bizrate                                                         0  0
##   buyers                                                          0  0
##   capability                                                      0  0
##   careerboosting                                                  0  0
##   case                                                            0  0
##   choose                                                          0  0
##   cleansing                                                       0  0
##   collaborative                                                   0  0
##   collected                                                       0  0
##   communicating                                                   0  0
##   comprehensive                                                   0  0
##   conferences                                                     1  0
##   cons                                                            0  0
##   consumers                                                       0  0
##   continuously                                                    0  0
##   contributor                                                     0  0
##   coordinating                                                    0  1
##   core                                                            0  0
##   cover                                                           0  0
##   creed                                                           0  0
##   cross                                                           0  0
##   customerfacing                                                  0  0
##   customergenerated                                               0  0
##   cycle                                                           0  0
##   definition                                                      0  0
##   depending                                                       0  0
##   ecosystem                                                       0  0
##   ecosystems                                                      0  0
##   eeo                                                             0  0
##   effectively                                                     0  0
##   emergent                                                        0  0
##   evaluating                                                      0  0
##   excitement                                                      0  0
##   experiences                                                     0  0
##   exposed                                                         0  0
##   fun                                                             0  0
##   genetic                                                         0  0
##   gigabyte                                                        0  0
##   given                                                           0  0
##   hired                                                           0  0
##   holdout                                                         0  0
##   httpwwwuscisgoveverifyemployees                                 0  0
##   hyper                                                           0  0
##   integration                                                     1  0
##   investment                                                      0  0
##   likeminded                                                      0  0
##   local                                                           0  0
##   lot                                                             0  0
##   means                                                           0  0
##   measurements                                                    0  0
##   meredith                                                        0  0
##   million                                                         0  0
##   modelsresults                                                   0  0
##   move                                                            0  0
##   needle                                                          0  0
##   ones                                                            0  0
##   overfitting                                                     0  0
##   paradigm                                                        0  0
##   parameter                                                       0  0
##   participates                                                    0  0
##   participating                                                   0  0
##   parties                                                         0  0
##   partners                                                        0  0
##   persons                                                         0  0
##   popular                                                         0  0
##   practical                                                       0  0
##   priorities                                                      0  0
##   pros                                                            0  0
##   public                                                          0  0
##   ratings                                                         0  0
##   regardless                                                      0  0
##   reimbursement                                                   0  0
##   retail                                                          0  0
##   retailers                                                       0  0
##   rmse                                                            0  0
##   rocksolid                                                       0  0
##   rpython                                                         0  0
##   selflearner                                                     0  0
##   seller                                                          0  0
##   semisupervised                                                  0  0
##   sessions                                                        0  0
##   side                                                            0  0
##   sizes                                                           0  0
##   social                                                          0  0
##   state                                                           0  0
##   supportive                                                      0  0
##   switch                                                          0  0
##   technologist                                                    0  0
##   terabytescale                                                   0  0
##   thousands                                                       0  0
##   thrive                                                          0  0
##   timeline                                                        0  0
##   toolkits                                                        0  1
##   traffic                                                         0  0
##   tuition                                                         0  0
##   validation                                                      0  0
##   verified                                                        0  0
##   versa                                                           0  0
##   vice                                                            0  0
##   xgboost                                                         0  0
##   accomplished                                                    0  0
##   advisors                                                        0  0
##   ahead                                                           0  0
##   ambition                                                        0  0
##   becoming                                                        0  0
##   boasts                                                          0  0
##   boundless                                                       0  0
##   broader                                                         0  0
##   channels                                                        0  0
##   citizen                                                         0  0
##   citizens                                                        0  0
##   comfortable                                                     0  1
##   consistencystandardization                                      0  0
##   corporate                                                       0  0
##   coveted                                                         0  0
##   define                                                          0  0
##   defining                                                        0  0
##   distribution                                                    0  0
##   domains                                                         0  0
##   dont                                                            0  0
##   earned                                                          0  0
##   elite                                                           0  0
##   entertaining                                                    0  0
##   entertainment                                                   0  0
##   entrepreneurs                                                   0  0
##   environments                                                    0  0
##   epic                                                            0  0
##   exclusive                                                       0  0
##   forest                                                          0  0
##   generouslysponsored                                             0  0
##   giants                                                          0  0
##   glmregression                                                   0  0
##   hard                                                            0  0
##   head                                                            0  0
##   hit                                                             0  0
##   hollywood                                                       0  0
##   impacting                                                       0  0
##   improvements                                                    0  0
##   individual                                                      0  0
##   investors                                                       0  0
##   know                                                            0  0
##   lasting                                                         0  0
##   lean                                                            0  0
##   lifestyle                                                       0  0
##   mastery                                                         0  0
##   microstrategy                                                   0  0
##   movies                                                          0  0
##   news                                                            0  0
##   nonsql                                                          0  0
##   open                                                            0  0
##   opposed                                                         0  0
##   particularly                                                    0  0
##   planet                                                          0  0
##   plentiful                                                       0  0
##   pluto                                                           0  0
##   powerbi                                                         0  0
##   premier                                                         1  0
##   privilege                                                       0  0
##   proactively                                                     0  0
##   profoundly                                                      0  0
##   pull                                                            0  0
##   qualities                                                       0  0
##   quest                                                           0  0
##   questioning                                                     0  0
##   random                                                          0  0
##   reach                                                           0  0
##   renowned                                                        0  0
##   revolutionize                                                   0  0
##   scoring                                                         0  0
##   seemingly                                                       0  0
##   selective                                                       0  0
##   selfstarters                                                    0  0
##   servicing                                                       0  0
##   significantly                                                   0  0
##   smartest                                                        0  0
##   speed                                                           0  0
##   stakes                                                          0  0
##   starts                                                          0  0
##   strongly                                                        0  0
##   successful                                                      0  0
##   suggesting                                                      0  0
##   supported                                                       0  0
##   television                                                      0  0
##   timely                                                          0  0
##   treat                                                           0  0
##   unstructurednonstandardized                                     0  0
##   useful                                                          0  0
##   viewers                                                         0  0
##   warp                                                            0  0
##   west                                                            0  0
##   wide                                                            0  1
##   youre                                                           0  0
##   airflow                                                         0  0
##   art                                                             0  0
##   automotive                                                      0  0
##   block                                                           0  0
##   cars                                                            0  0
##   cellphone                                                       0  0
##   commuter                                                        0  0
##   competing                                                       0  0
##   competition                                                     0  0
##   construct                                                       0  0
##   coverage                                                        0  0
##   daily                                                           0  0
##   discount                                                        0  0
##   docker                                                          0  0
##   dollar                                                          0  0
##   eagerness                                                       0  0
##   etl                                                             0  0
##   fair                                                            0  0
##   families                                                        0  0
##   features                                                        0  1
##   flask                                                           0  0
##   green                                                           0  0
##   incentives                                                      0  0
##   jupyter                                                         0  0
##   kaggle                                                          0  0
##   kubernetes                                                      0  0
##   light                                                           0  0
##   luigi                                                           0  0
##   lunch                                                           0  0
##   mentorship                                                      0  0
##   molds                                                           0  0
##   onboarding                                                      0  0
##   owners                                                          0  0
##   package                                                         0  0
##   parking                                                         0  0
##   pivotal                                                         0  0
##   play                                                            0  0
##   postgres                                                        0  0
##   rail                                                            0  0
##   realtime                                                        0  0
##   reshape                                                         0  0
##   running                                                         0  0
##   scientistmachine                                                0  0
##   shopping                                                        0  0
##   sklearn                                                         0  0
##   sqlalchemy                                                      0  0
##   superset                                                        0  0
##   treasure                                                        0  0
##   trillion                                                        0  0
##   warehousing                                                     0  0
##   workflows                                                       0  0
##   accurate                                                        0  0
##   aggregate                                                       0  0
##   applied                                                         0  0
##   appreciated                                                     0  0
##   appropriate                                                     0  0
##   athena                                                          0  0
##   author                                                          0  0
##   brands                                                          0  0
##   breaking                                                        0  0
##   broadly                                                         0  0
##   command                                                         1  0
##   competency                                                      0  0
##   components                                                      0  0
##   crossfunctionally                                               0  0
##   delivered                                                       0  0
##   establish                                                       0  0
##   established                                                     0  0
##   evaluations                                                     0  0
##   expand                                                          0  0
##   explanation                                                     0  0
##   factual                                                         0  0
##   factuals                                                        0  0
##   filter                                                          0  0
##   greatly                                                         0  0
##   guidance                                                        0  0
##   guide                                                           0  0
##   handle                                                          0  1
##   happening                                                       0  0
##   impactful                                                       0  0
##   increasing                                                      0  0
##   industryleading                                                 0  0
##   influence                                                       0  0
##   intelligently                                                   0  0
##   interpret                                                       0  0
##   known                                                           0  0
##   knows                                                           0  0
##   learnings                                                       0  0
##   letters                                                         0  0
##   line                                                            0  0
##   love                                                            0  0
##   marketers                                                       0  0
##   matched                                                         0  0
##   messy                                                           0  0
##   places                                                          0  0
##   prescribe                                                       0  0
##   propose                                                         0  0
##   questions                                                       0  0
##   really                                                          0  0
##   recommended                                                     0  0
##   sell                                                            0  0
##   several                                                         0  0
##   sharing                                                         0  0
##   shell                                                           0  0
##   specifications                                                  0  0
##   structure                                                       0  0
##   teaching                                                        0  0
##   thanks                                                          0  0
##   trust                                                           0  0
##   uncertainty                                                     0  0
##   underlying                                                      0  0
##   understands                                                     0  0
##   utilities                                                       0  0
##   variance                                                        0  0
##   willingness                                                     0  0
##   wrangle                                                         0  0
##   almost                                                          0  1
##   artistic                                                        0  0
##   ashamed                                                         0  0
##   augmenting                                                      0  0
##   away                                                            0  0
##   bokeh                                                           0  0
##   buzz                                                            0  0
##   classifiers                                                     0  0
##   coming                                                          0  0
##   considering                                                     0  0
##   constantly                                                      0  0
##   creativity                                                      0  0
##   credentials                                                     0  0
##   dark                                                            0  0
##   demo                                                            0  0
##   didnt                                                           0  0
##   discussions                                                     0  0
##   don                                                             0  0
##   drama                                                           0  0
##   dry                                                             0  0
##   enjoying                                                        0  0
##   everybody                                                       0  0
##   everything                                                      0  0
##   facing                                                          0  0
##   fear                                                            0  0
##   feel                                                            0  0
##   finds                                                           0  0
##   floor                                                           0  0
##   frequent                                                        0  0
##   frequently                                                      0  0
##   generation                                                      0  0
##   github                                                          0  0
##   ground                                                          0  0
##   handful                                                         0  0
##   hidden                                                          1  1
##   hobby                                                           0  0
##   hole                                                            0  0
##   hone                                                            0  0
##   ingesting                                                       0  0
##   integrity                                                       0  1
##   knowledgegraphs                                                 0  0
##   laid                                                            0  0
##   late                                                            0  0
##   likely                                                          0  0
##   linkedin                                                        0  0
##   links                                                           0  0
##   little                                                          0  0
##   matplotlib                                                      0  0
##   mildly                                                          0  0
##   modularization                                                  0  0
##   music                                                           0  0
##   near                                                            0  0
##   night                                                           0  0
##   number                                                          0  0
##   occasional                                                      0  0
##   occurrences                                                     0  0
##   politics                                                        0  0
##   portfolio                                                       1  0
##   practice                                                        0  0
##   pragmatist                                                      0  0
##   prefer                                                          0  0
##   presenting                                                      1  0
##   prevent                                                         0  0
##   purist                                                          0  0
##   rather                                                          0  0
##   reflect                                                         0  0
##   reuse                                                           0  0
##   résumé                                                          0  0
##   score                                                           0  0
##   selecting                                                       0  0
##   semantic                                                        1  0
##   serverside                                                      0  0
##   smarter                                                         0  1
##   sounds                                                          0  0
##   specializing                                                    0  0
##   spend                                                           0  0
##   stats                                                           0  0
##   still                                                           0  0
##   strive                                                          0  0
##   summarization                                                   0  0
##   thing                                                           0  0
##   thirdparty                                                      0  0
##   topic                                                           0  0
##   topics                                                          0  0
##   uncovering                                                      0  0
##   verifying                                                       0  0
##   acquisition                                                     0  0
##   adoption                                                        0  0
##   centene                                                         0  0
##   claims                                                          0  0
##   db2                                                             0  0
##   different                                                       0  1
##   distinguish                                                     0  0
##   durability                                                      0  0
##   expectations                                                    0  0
##   experiments                                                     0  0
##   exploratory                                                     0  0
##   format                                                          0  0
##   hana                                                            0  0
##   improvement                                                     0  2
##   informatics                                                     0  1
##   knowledgeexperience                                             0  0
##   liaisons                                                        0  0
##   measure                                                         0  0
##   membership                                                      0  0
##   mysql                                                           0  0
##   presentations                                                   0  0
##   provider                                                        0  0
##   recognize                                                       0  0
##   sap                                                             0  0
##   scale                                                           0  0
##   targeted                                                        0  0
##   teradata                                                        0  0
##   validate                                                        0  0
##   values                                                          0  0
##   adept                                                           0  1
##   advantagesdrawbacks                                             0  1
##   adwords                                                         0  0
##   artificial                                                      0  0
##   becseeitis                                                      0  0
##   catalyst                                                        0  0
##   coremetrics                                                     0  0
##   courses                                                         0  0
##   creatingrunning                                                 0  0
##   crimson                                                         0  0
##   datacomputing                                                   0  0
##   digitalocean                                                    0  0
##   draw                                                            0  1
##   education                                                       1  0
##   framework                                                       0  0
##   gained                                                          0  1
##   ggplot                                                          0  0
##   gurobi                                                          0  0
##   hexagon                                                         0  0
##   inflight                                                        0  0
##   mine                                                            0  1
##   miningdata                                                      0  1
##   multimedia                                                      0  0
##   objects                                                         0  0
##   performance                                                     0  1
##   periscope                                                       0  0
##   primary                                                         0  0
##   providers                                                       0  0
##   scenario                                                        0  0
##   secondary                                                       0  0
##   simulations                                                     0  0
##   site                                                            0  0
##   slq                                                             0  0
##   tree                                                            0  1
##   usingcreating                                                   0  1
##   visualizingpresenting                                           0  0
##   600                                                             0  0
##   adtech                                                          0  0
##   backgrounds                                                     0  0
##   balance                                                         0  0
##   causal                                                          0  0
##   cities                                                          0  0
##   crosschannel                                                    0  0
##   demonstrable                                                    0  0
##   eaters                                                          0  0
##   forward                                                         0  0
##   grade                                                           0  1
##   growth                                                          0  0
##   hunger                                                          0  0
##   ignite                                                          0  0
##   ltv                                                             0  0
##   marketindividual                                                0  0
##   meeting                                                         0  0
##   motion                                                          0  0
##   moving                                                          0  0
##   planningprioritization                                          0  0
##   player                                                          0  0
##   prioritization                                                  0  0
##   response                                                        0  0
##   riders                                                          0  0
##   seek                                                            0  0
##   spirit                                                          0  0
##   stakeholder                                                     0  0
##   swift                                                           0  0
##   welcome                                                         0  0
##   1236                                                            0  0
##   answer                                                          0  0
##   apparel                                                         0  0
##   assortment                                                      0  0
##   backtest                                                        0  0
##   behaviors                                                       0  0
##   brand                                                           0  0
##   bright                                                          0  0
##   brightest                                                       0  0
##   colorful                                                        0  0
##   commerce                                                        0  0
##   community                                                       0  0
##   compare                                                         0  0
##   continually                                                     0  0
##   course                                                          0  0
##   curates                                                         0  0
##   currently                                                       0  0
##   customerdriven                                                  0  0
##   decor                                                           0  0
##   designers                                                       0  0
##   designs                                                         0  0
##   digitally                                                       0  0
##   drives                                                          0  0
##   dynamic                                                         0  0
##   effort                                                          0  0
##   empathy                                                         0  0
##   empower                                                         0  0
##   engagement                                                      0  0
##   engaging                                                        0  0
##   exist                                                           0  0
##   fashion                                                         0  0
##   feminine                                                        0  0
##   generated                                                       0  0
##   greatwhat                                                       0  0
##   grounded                                                        0  0
##   honesty                                                         0  0
##   hundred                                                         0  0
##   inhouse                                                         0  0
##   inside                                                          0  0
##   inspired                                                        1  0
##   inspiring                                                       0  0
##   intellectual                                                    0  0
##   intersection                                                    0  0
##   investing                                                       0  0
##   iterative                                                       0  0
##   javascript                                                      0  0
##   kind                                                            0  0
##   leverages                                                       0  0
##   leveraging                                                      0  1
##   linux                                                           0  0
##   matterwhat                                                      0  0
##   modcloth                                                        0  0
##   monthsis                                                        0  0
##   native                                                          0  0
##   note                                                            0  0
##   offline                                                         0  0
##   omnichannel                                                     0  0
##   outcomeswhy                                                     0  0
##   particular                                                      0  0
##   performances                                                    0  0
##   prints                                                          0  0
##   professional                                                    0  0
##   retaining                                                       0  0
##   sells                                                           0  0
##   sentiment                                                       0  0
##   sequence                                                        0  0
##   signature                                                       0  0
##   silhouettes                                                     0  0
##   sit                                                             0  0
##   stem                                                            0  0
##   style                                                           0  0
##   unparalleled                                                    0  0
##   upon                                                            0  1
##   version                                                         0  0
##   vintage                                                         0  0
##   wants                                                           0  0
##   warehouse                                                       0  0
##   whats                                                           0  0
##   adventure                                                       0  0
##   awaits                                                          0  0
##   bcg                                                             0  0
##   bcgdvcom                                                        0  0
##   collaborating                                                   0  0
##   cultivate                                                       0  0
##   dashboard                                                       0  0
##   demonstrate                                                     1  0
##   deployed                                                        0  0
##   evergrowing                                                     0  0
##   fast                                                            0  0
##   filtering                                                       0  0
##   flurry                                                          0  0
##   foundation                                                      0  0
##   graph                                                           0  0
##   graphing                                                        0  0
##   hadoopmapreduce                                                 0  0
##   httpswwwbcgdvcom                                                0  0
##   ingestion                                                       0  0
##   interested                                                      0  0
##   interviews                                                      0  0
##   least                                                           0  1
##   listed                                                          0  0
##   mixpanel                                                        0  0
##   onpremises                                                      0  0
##   pair                                                            0  0
##   querying                                                        0  0
##   ranging                                                         0  0
##   remarkable                                                      0  0
##   restricted                                                      0  0
##   resumes                                                         0  0
##   screened                                                        0  0
##   solely                                                          0  0
##   strategic                                                       0  0
##   talks                                                           0  0
##   though                                                          0  0
##   varied                                                          0  0
##   ventures                                                        0  0
##   website                                                         0  0
##   additionally                                                    0  0
##   autonomously                                                    0  0
##   classic                                                         0  0
##   clearances                                                      0  0
##   compliment                                                      0  0
##   cores                                                           0  0
##   fpga                                                            0  0
##   matlab                                                          0  0
##   qualify                                                         0  0
##   replace                                                         0  0
##   signal                                                          0  0
##   softwaredefined                                                 0  0
##   studying                                                        0  0
##   transceivers                                                    0  0
##   unixlinux                                                       0  0
##   3103365432                                                      0  0
##   accommodation                                                   0  0
##   adapt                                                           0  0
##   analytic                                                        2  0
##   ancestry                                                        0  0
##   api                                                             0  0
##   applicationsystem                                               0  0
##   assessment                                                      0  0
##   caffetensorflow                                                 0  0
##   character                                                       0  0
##   childbirth                                                      0  0
##   collecting                                                      0  0
##   condition                                                       0  0
##   configuration                                                   0  0
##   consistent                                                      0  0
##   contact                                                         0  0
##   detailoriented                                                  0  0
##   disabled                                                        0  0
##   distributions                                                   0  1
##   email                                                           0  0
##   estimators                                                      0  0
##   extracurricular                                                 0  0
##   featuredriven                                                   0  0
##   forests                                                         0  0
##   forwith                                                         0  0
##   fromexposing                                                    0  0
##   gpa                                                             0  0
##   ieomailboxaeroorg                                               0  0
##   imagesignal                                                     0  0
##   institution                                                     0  0
##   interdisciplinary                                               0  0
##   interest                                                        0  0
##   interfaces                                                      0  0
##   json                                                            0  0
##   keen                                                            0  0
##   knearest                                                        0  0
##   leads                                                           0  0
##   library                                                         0  0
##   lifecycles                                                      0  0
##   likelihood                                                      0  0
##   maturity                                                        0  0
##   maximum                                                         0  0
##   missioncritical                                                 0  0
##   neighbors                                                       0  0
##   objectivity                                                     0  0
##   octavematlab                                                    0  0
##   opencv                                                          0  0
##   operating                                                       0  0
##   organizational                                                  0  0
##   participation                                                   0  0
##   path                                                            0  0
##   pertinent                                                       0  0
##   positions                                                       0  0
##   pregnancy                                                       0  0
##   presentation                                                    0  0
##   prevalence                                                      0  0
##   progress                                                        0  0
##   proofofconcept                                                  0  0
##   prove                                                           0  0
##   pursuing                                                        0  0
##   recognized                                                      0  1
##   resilient                                                       0  0
##   responsibility                                                  0  0
##   selected                                                        0  0
##   socially                                                        0  0
##   softwaresystem                                                  0  0
##   softwaresystems                                                 0  0
##   spent                                                           0  0
##   standards                                                       0  0
##   technically                                                     0  0
##   typically                                                       0  0
##   utilization                                                     0  0
##   viability                                                       0  0
##   virtualizationcloud                                             0  0
##   xml                                                             0  0
##   advantages                                                      0  0
##   anywhere                                                        0  0
##   careersbcgdvcomlearnmore                                        0  0
##   competencies                                                    0  0
##   cutting                                                         0  0
##   edge                                                            0  0
##   horizon                                                         1  0
##   manhattan                                                       0  0
##   truly                                                           0  0
##   accenture                                                       0  0
##   acceptance                                                      0  0
##   adapting                                                        0  0
##   affiliated                                                      0  0
##   affirmative                                                     0  0
##   alternate                                                       0  0
##   approach                                                        0  0
##   architect                                                       0  0
##   arrest                                                          0  0
##   aspirant                                                        0  0
##   assesses                                                        0  0
##   assets                                                          0  0
##   assignments                                                     0  0
##   basic                                                           1  0
##   cases                                                           0  0
##   centre                                                          0  0
##   certifications                                                  0  0
##   chain                                                           0  0
##   conceptual                                                      0  0
##   conceptualize                                                   0  0
##   conducted                                                       0  0
##   considered                                                      0  0
##   contribution                                                    0  0
##   corner                                                          0  0
##   delivers                                                        0  0
##   determine                                                       0  0
##   disclose                                                        0  0
##   eligible                                                        0  0
##   employed                                                        0  0
##   enhancing                                                       0  0
##   executive                                                       0  0
##   expunged                                                        0  0
##   factors                                                         0  0
##   femalesminoritiesveteransindividuals                            0  0
##   firsttomarket                                                   0  0
##   flink                                                           0  0
##   follows                                                         0  0
##   fulfilment                                                      0  0
##   fundamental                                                     0  0
##   fuzzy                                                           0  0
##   globe                                                           0  0
##   handling                                                        0  1
##   human                                                           0  0
##   identifies                                                      0  0
##   indicators                                                      0  0
##   industrialorganizational                                        0  0
##   interacts                                                       0  0
##   intermediate                                                    0  0
##   iot                                                             0  0
##   julia                                                           0  0
##   labs                                                            0  0
##   logic                                                           0  0
##   machinelearning                                                 0  0
##   mark                                                            0  0
##   markov                                                          0  0
##   matters                                                         0  0
##   men                                                             0  0
##   mobility                                                        0  0
##   nonparametric                                                   0  0
##   obligated                                                       0  0
##   outcome                                                         0  0
##   pivot                                                           0  0
##   projectbased                                                    0  0
##   records                                                         0  0
##   redefine                                                        0  0
##   reliability                                                     0  0
##   robotics                                                        0  0
##   scheduling                                                      0  0
##   sealed                                                          0  0
##   shall                                                           0  0
##   situations                                                      0  0
##   sized                                                           0  0
##   solves                                                          0  0
##   source                                                          0  0
##   stochastic                                                      0  0
##   supply                                                          0  0
##   term                                                            0  0
##   variable                                                        0  0
##   versed                                                          0  0
##   women                                                           0  0
##   01162019                                                        0  0
##   aaid                                                            0  0
##   analyticsleading                                                0  0
##   anomaly                                                         0  0
##   architecting                                                    0  0
##   arima                                                           0  0
##   arma                                                            0  0
##   articulating                                                    0  0
##   assessments                                                     0  0
##   carlo                                                           0  0
##   categorical                                                     0  0
##   categorize                                                      0  0
##   civil                                                           0  0
##   collect                                                         0  0
##   comprised                                                       0  0
##   conference                                                      0  0
##   consistently                                                    0  0
##   correlation                                                     0  0
##   crossdomain                                                     0  0
##   crossprogram                                                    0  0
##   dimension                                                       0  0
##   dod                                                             0  0
##   eight                                                           0  0
##   emphasis                                                        0  0
##   engrg                                                           0  0
##   followup                                                        0  0
##   forming                                                         0  0
##   frontend                                                        0  0
##   implications                                                    0  0
##   issue                                                           0  0
##   languagedevelopment                                             0  0
##   monte                                                           0  0
##   multidisciplinary                                               0  0
##   narx                                                            0  0
##   papersarticles                                                  0  0
##   preference                                                      0  0
##   programmatic                                                    0  0
##   published                                                       0  0
##   reduction                                                       0  0
##   relate                                                          0  0
##   resulting                                                       0  0
##   risk                                                            0  0
##   sci                                                             0  0
##   scipy                                                           0  0
##   significant                                                     0  0
##   specialists                                                     0  0
##   steward                                                         0  0
##   summarize                                                       0  0
##   tailoring                                                       0  0
##   threats                                                         0  0
##   toolset                                                         0  0
##   twelve                                                          0  0
##   vehicle                                                         0  0
##   adobe                                                           0  0
##   affinities                                                      0  0
##   asks                                                            0  0
##   audience                                                        0  0
##   audiences                                                       0  0
##   bigpicture                                                      0  0
##   bluekai                                                         0  0
##   bottom                                                          0  0
##   businesssavvy                                                   0  0
##   collaboratively                                                 0  0
##   confidently                                                     0  0
##   conscientious                                                   0  0
##   controlled                                                      0  0
##   depth                                                           0  0
##   disney                                                          0  0
##   distill                                                         0  0
##   dmp                                                             0  0
##   dmps                                                            0  0
##   dtci                                                            0  0
##   examining                                                       0  0
##   handsonexecution                                                0  0
##   hivehadoopcloud                                                 0  0
##   hypotheses                                                      0  0
##   intellectually                                                  0  0
##   international                                                   0  0
##   lookalike                                                       0  0
##   mathstatistics                                                  0  0
##   mba                                                             0  0
##   measurable                                                      0  0
##   monetization                                                    0  0
##   multichannel                                                    0  0
##  [ reached getOption("max.print") -- omitted 320 rows ]
#document id's appearing as character(0), which is annoying me, so changing it.
#creating a vector of files names

#after this, we need to convert this into traditional matrix.
m <- as.matrix(corpustdm)
corpusdf <- data.frame(m)

v <- sort(rowSums(m),decreasing=TRUE)
d <- data.frame(word = names(v),freq=v)

corpusdf <- rownames_to_column(corpusdf)
corpusdf <- rename(corpusdf, c("rowname"="word"))
corpusdf$wordcount <- rowSums(corpusdf[-1])
corpusdf <- corpusdf[order(-corpusdf$wordcount),]
#religioustextsdf <- religioustextsdf %>%
 # arrange(desc(wordcount))

#since all the rows are same and numeric,we can add them up to get the total value
#sort it based on the number

pal <- brewer.pal(9,"RdYlGn")
pal <- pal[-(1:2)]

set.seed(142)
wordcloud(word=corpusdf$word, freq= corpusdf$wordcount,  colors = brewer.pal(6, "Dark2"), random.order=FALSE, rot.per= 0.35, max.words = 150)

#plotting words which have more than a count of 1000
ggplot(subset(corpusdf, wordcount>30), aes(reorder(word, -wordcount), wordcount)) +
  geom_bar(stat="identity") +
  xlab("Words with the highest frequency") +
  ylab("Frequency") +
  ggtitle("Understanding word frequencies") +
  theme(axis.text.x=element_text(angle=90, hjust=0.9))

barplot(d[1:10,]$freq, las = 2, names.arg = d[1:10,]$word,
        col ="lightgreen", main ="Most frequent words",
        ylab = "Word frequencies")

#Hierarchal Clustering
#First calculate distance between words & then cluster them according to similarity.
library(cluster)   
d <- dist(corpustdm, method="euclidian")   
fit <- hclust(d=d, method="ward.D")   # for a different look try substituting: method="ward.D"

fit 
## 
## Call:
## hclust(d = d, method = "ward.D")
## 
## Cluster method   : ward.D 
## Distance         : euclidean 
## Number of objects: 2819
plot(fit, hang=-1) 

library(udpipe)
library(lattice)


ud_model <- udpipe_download_model(language = "english")
ud_model <- udpipe_load_model(ud_model$file_model)
x <- udpipe_annotate(ud_model, x = data.text$Description, doc_id = data.text$Company)
x <- as.data.frame(x)


stats <- txt_freq(x$upos)
stats$key <- factor(stats$key, levels = rev(stats$key))
barchart(key ~ freq, data = stats, col = "lightgreen", 
         main = "UPOS (Universal Parts of Speech)\n frequency of occurrence", 
         xlab = "Freq")

## ADJECTIVES
stats <- subset(x, upos %in% c("ADJ")) 
stats <- txt_freq(stats$token)
stats$key <- factor(stats$key, levels = rev(stats$key))
barchart(key ~ freq, data = head(stats, 20), col = "purple", 
         main = "Most occurring adjectives", xlab = "Freq")

## NOUNS
stats <- subset(x, upos %in% c("VERB")) 
stats <- txt_freq(stats$token)
stats$key <- factor(stats$key, levels = rev(stats$key))
barchart(key ~ freq, data = head(stats, 20), col = "gold", 
         main = "Most occurring Verbs", xlab = "Freq")

## Using RAKE
#Rapid Automatic Keyword Extraction (RAKE) is an algorithm to automatically extract keywords from documents.
#More info on https://www.thinkinfi.com/2018/09/keyword-extraction-using-rake-in-python.html

stats <- keywords_rake(x = x, term = "lemma", group = "doc_id", 
                       relevant = x$upos %in% c("NOUN", "ADJ"))
stats$key <- factor(stats$keyword, levels = rev(stats$keyword))
barchart(key ~ rake, data = head(subset(stats, freq > 3), 20), col = "red", 
         main = "Keywords identified by RAKE", 
         xlab = "Rake")

## Using a sequence of POS tags (noun phrases / verb phrases)
x$phrase_tag <- as_phrasemachine(x$upos, type = "upos")
stats <- keywords_phrases(x = x$phrase_tag, term = tolower(x$token), 
                          pattern = "(A|N)*N(P+D*(A|N)*N)*", 
                          is_regex = TRUE, detailed = FALSE)
stats <- subset(stats, ngram > 1 & freq > 3)
stats$key <- factor(stats$keyword, levels = rev(stats$keyword))
barchart(key ~ freq, data = head(stats, 20), col = "magenta", 
         main = "Keywords - simple noun phrases", xlab = "Frequency")

3.2 Output

3.2.1 Money Spent by Customers

3.2.2 Days Since Last Purchase

3.2.3 Number of Purchases

4 Data Modeling

4.1 K-Means

Basically, it works like this…

4.2 Cluster Definition

# 4.1 Elbow method

set.seed(123)
# Compute and plot wss for k = 2 to k = 15
# k.max <- 15 # Maximal number of clusters
# data <- customer.data[,2:4]
# wss <- sapply(1:k.max,
#               function(k){kmeans(data, k, nstart=10 )$tot.withinss})
# plot(1:k.max, wss,
#      type="b", pch = 19, frame = FALSE,
#      xlab="Number of clusters K",
#      ylab="Total within-clusters sum of squares")
# abline(v = 4, lty =2,col="royalblue")


# 4.2 Average Silhouette method

library(cluster)
# k.max <- 10
# data <- customer.data[,2:4]
# sil <- rep(0, k.max)
# # Compute the average silhouette width for
# # k = 2 to k = 15
# for(i in 2:k.max){
#   km.res <- kmeans(data, centers = i, nstart = 25)
#   ss <- silhouette(km.res$cluster, dist(data))
#   sil[i] <- mean(ss[, 3])
# }

# Plot the  average silhouette width
# plot(1:k.max, sil, type = "b", pch = 19,
#      frame = FALSE, xlab = "Number of clusters k")
# abline(v = which.max(sil), lty = 2)


# 4.3 Gap Statistic method
# set.seed(123)
# data <- customer.data[,2:4]
# gap_stat <- clusGap(data, FUN = kmeans, nstart = 25,K.max = 10, B = 50)
# fviz_gap_stat(gap_stat)


# 4.4 Using 30 different indexes
# set.seed(123)
# data <- customer.data[,2:4]
# res <- NbClust(data, diss=NULL, distance = "euclidean", min.nc=2, max.nc=10, method = "kmeans" , index = "all")
# fviz_nbclust(res) + theme_minimal()

4.3 Processing

# 
# # 5. K-MEAN CLUSTERING
# 
# 5.1 fit the model and get cluster means
# set.seed(123)
# data <- customer.data[,6:8]
# fit <- kmeans(data, 5, nstart = 20) 
# aggregate(customer.data[,2:4],by=list(fit$cluster),FUN=mean) 
# 
# # 5.2 Display cluster centers and give a count of data points in each cluster
# #fit$centers 
# table(fit$cluster) 

5 Results

5.1 2D plot

# 5.3 Plot the model
#clusplot(data, fit$cluster, color=TRUE, shade=TRUE, Expllabels=2, lines=0)

# fviz_cluster(fit, data = data)
# 
# 
# # Add cluster membership to customers dataset
# customer.data$cluster <- fit$cluster
# customer.data$cluster  <- factor(customer.data$cluster, levels = c(1:5))

##2D plot

5.2 3D plot

#######################
# Plot clusters in 3D #
#######################
# 
# colors <- c('red','orange','green3','deepskyblue','blue','darkorchid4','violet','pink1','tan3','black')
# scatter3d(x = customer.data$number.pur.z, 
#           y = customer.data$money.spent.z,
#           z = customer.data$days.sl.pur.z, 
#           groups = customer.data$cluster,
#           xlab = "Frequency (z)", 
#           ylab = "Monetary Value (z)",
#           zlab = "Recency (z)",
#           surface.col = colors,
#           box=FALSE,angle =80,
#           axis.scales = FALSE,
#           surface = TRUE, # produces the horizonal planes through the graph at each level of monetary value
#           fit = "smooth",
#           #     ellipsoid = TRUE, # to graph ellipses uses this command and set "surface = " to FALSE
#           grid = TRUE,
#           axis.col = c("black", "black", "black"))
# 
# 
# 
# 
# 
# scatter3d(x = customer.data$money.spent.z, 
#           y = customer.data$number.pur.z,
#           z = customer.data$days.sl.pur.z,
#           groups = customer.data$cluster,
#           xlab = "Monetary Value (z)", 
#           ylab = "Frequency (z)",
#           zlab = "Recency (z)",
#           surface.col = colors,
#           axis.scales = FALSE,
#           surface = TRUE, # produces the horizonal planes through the graph at each level of monetary value
#           fit = "smooth",
#           #     ellipsoid = TRUE, # to graph ellipses uses this command and set "surface = " to FALSE
#           grid = TRUE,
#           axis.col = c("black", "black", "black"))

5.3 Labeling

# 
# count_cluster <- as.data.frame(table(fit$cluster))
# colnames (count_cluster ) <- c("Group.1","Customers")
# df <- aggregate(customer.data[,2:4],by=list(fit$cluster),FUN=mean) 
# df <- merge (df, count_cluster, by = "Group.1")
# 
# 
# colnames (df) <- c("Cluster","Days since last purchase","Number of purchases","Money spent","Customers")
# df$`Days since last purchase` <- round(df$`Days since last purchase`)
# df$`Number of purchases` <- round(df$`Number of purchases` )
# df$`Money spent` <- round(df$`Money spent`)
# 
# d <- head(df)
# 
# tt3 <- ttheme_minimal(
#   core=list(bg_params = list(fill = blues9[1:4], col=NA),
#             fg_params=list(fontface=3)),
#   colhead=list(fg_params=list(col="navyblue", fontface=4L)),
#   rowhead=list(fg_params=list(col="orange", fontface=3L)))
# 
# 
# grid.arrange(tableGrob(d, theme=tt3), nrow=1)

5.4 Findings

# test

6 What is Next

  • Explore more variables: first day of purchase, spent per category…
  • Inventory segmentation
  • Qualify the Suppliers
  • Employee profiles

7 References